Asterisk ari-request: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Overview == Asterisk ARI(Asterisk REST Interface) 내용 정리. == Applications == == Asterisk == == Bridges == == Channels == == Devicestates == == Endpoints == ==...") |
|||
Line 3: | Line 3: | ||
== Applications == | == Applications == | ||
=== /applications === | |||
==== GET ==== | |||
List all applications. | |||
'''Request''' | |||
<pre> | |||
GET /applications | |||
</pre> | |||
'''Return''' | |||
List[Application] | |||
GET | |||
/applications/{applicationName} | |||
Application | |||
Get details of an application. | |||
POST | |||
/applications/{applicationName}/subscription | |||
Application | |||
Subscribe an application to a event source. | |||
DELETE | |||
/applications/{applicationName}/subscription | |||
Application | |||
Unsubscribe an application from an event source. | |||
</pre> | |||
== Asterisk == | == Asterisk == |
Revision as of 10:04, 26 November 2015
Overview
Asterisk ARI(Asterisk REST Interface) 내용 정리.
Applications
/applications
GET
List all applications. Request
GET /applications
Return List[Application]
GET
/applications/{applicationName}
Application
Get details of an application.
POST
/applications/{applicationName}/subscription
Application
Subscribe an application to a event source.
DELETE
/applications/{applicationName}/subscription
Application
Unsubscribe an application from an event source.
Asterisk
Bridges
Channels
Devicestates
Endpoints
Events
Mailboxes
Playbacks
Recordings
REST Data Models
Sounds
See also
- https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+ARI - Asterisk 13 ARI