summaryrefslogtreecommitdiff
path: root/rest-api
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2014-12-08 16:24:36 +0000
committerMark Michelson <mmichelson@digium.com>2014-12-08 16:24:36 +0000
commitfe7671fee69b0ce1a6120a9ccb6664c5f31d37d3 (patch)
tree108d125bf0ea17e17cfb63bf5d7d89756eb30f7e /rest-api
parent4bb556a8478741dc81361327d3a50a8809be09f6 (diff)
Add new AMI and ARI events for connected line changes on a channel.
The AMI event is called NewConnectedLine and the ARI event is called ChannelConnectedLine. ASTERISK-24554 #close Reported by Matt Jordan Review: https://reviewboard.asterisk.org/r/4231 ........ Merged revisions 429064 from http://svn.asterisk.org/svn/asterisk/branches/13 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@429084 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'rest-api')
-rw-r--r--rest-api/api-docs/events.json14
1 files changed, 13 insertions, 1 deletions
diff --git a/rest-api/api-docs/events.json b/rest-api/api-docs/events.json
index d75e84b96..eac1e3f42 100644
--- a/rest-api/api-docs/events.json
+++ b/rest-api/api-docs/events.json
@@ -165,7 +165,8 @@
"Dial",
"StasisEnd",
"StasisStart",
- "TextMessageReceived"
+ "TextMessageReceived",
+ "ChannelConnectedLine"
]
},
"DeviceStateChanged": {
@@ -712,6 +713,17 @@
"type": "Endpoint"
}
}
+ },
+ "ChannelConnectedLine": {
+ "id": "ChannelConnectedLine",
+ "description": "Channel changed Connected Line.",
+ "properties": {
+ "channel": {
+ "required": true,
+ "type": "Channel",
+ "description": "The channel whose connected line has changed."
+ }
+ }
}
}
}