123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657 |
- {
- "_copyright": "Copyright (C) 2012 - 2013, Digium, Inc.",
- "_author": "David M. Lee, II <dlee@digium.com>",
- "_svn_revision": "$Revision$",
- "apiVersion": "1.5.0",
- "swaggerVersion": "1.1",
- "basePath": "http://localhost:8088/ari",
- "resourcePath": "/api-docs/bridges.{format}",
- "apis": [
- {
- "path": "/bridges",
- "description": "Active bridges",
- "operations": [
- {
- "httpMethod": "GET",
- "summary": "List all active bridges in Asterisk.",
- "nickname": "list",
- "responseClass": "List[Bridge]"
- },
- {
- "httpMethod": "POST",
- "summary": "Create a new bridge.",
- "notes": "This bridge persists until it has been shut down, or Asterisk has been shut down.",
- "nickname": "create",
- "responseClass": "Bridge",
- "parameters": [
- {
- "name": "type",
- "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media).",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "bridgeId",
- "description": "Unique ID to give to the bridge being created.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "name",
- "description": "Name to give to the bridge being created.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- }
- ]
- }
- ]
- },
- {
- "path": "/bridges/{bridgeId}",
- "description": "Individual bridge",
- "operations": [
- {
- "httpMethod": "POST",
- "summary": "Create a new bridge or updates an existing one.",
- "notes": "This bridge persists until it has been shut down, or Asterisk has been shut down.",
- "nickname": "create_or_update_with_id",
- "responseClass": "Bridge",
- "parameters": [
- {
- "name": "type",
- "description": "Comma separated list of bridge type attributes (mixing, holding, dtmf_events, proxy_media) to set.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "bridgeId",
- "description": "Unique ID to give to the bridge being created.",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "name",
- "description": "Set the name of the bridge.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- }
- ]
- },
- {
- "httpMethod": "GET",
- "summary": "Get bridge details.",
- "nickname": "get",
- "responseClass": "Bridge",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- }
- ],
- "errorResponses": [
- {
- "code": 404,
- "reason": "Bridge not found"
- }
- ]
- },
- {
- "httpMethod": "DELETE",
- "summary": "Shut down a bridge.",
- "notes": "If any channels are in this bridge, they will be removed and resume whatever they were doing beforehand.",
- "nickname": "destroy",
- "responseClass": "void",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- }
- ],
- "errorResponses": [
- {
- "code": 404,
- "reason": "Bridge not found"
- }
- ]
- }
- ]
- },
- {
- "path": "/bridges/{bridgeId}/addChannel",
- "description": "Add a channel to a bridge",
- "operations": [
- {
- "httpMethod": "POST",
- "summary": "Add a channel to a bridge.",
- "nickname": "addChannel",
- "responseClass": "void",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "channel",
- "description": "Ids of channels to add to bridge",
- "paramType": "query",
- "required": true,
- "allowMultiple": true,
- "dataType": "string"
- },
- {
- "name": "role",
- "description": "Channel's role in the bridge",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- }
- ],
- "errorResponses": [
- {
- "code": 400,
- "reason": "Channel not found"
- },
- {
- "code": 404,
- "reason": "Bridge not found"
- },
- {
- "code": 409,
- "reason": "Bridge not in Stasis application; Channel currently recording"
- },
- {
- "code": 422,
- "reason": "Channel not in Stasis application"
- }
- ]
- }
- ]
- },
- {
- "path": "/bridges/{bridgeId}/removeChannel",
- "description": "Remove a channel from a bridge",
- "operations": [
- {
- "httpMethod": "POST",
- "summary": "Remove a channel from a bridge.",
- "nickname": "removeChannel",
- "responseClass": "void",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "channel",
- "description": "Ids of channels to remove from bridge",
- "paramType": "query",
- "required": true,
- "allowMultiple": true,
- "dataType": "string"
- }
- ],
- "errorResponses": [
- {
- "code": 400,
- "reason": "Channel not found"
- },
- {
- "code": 404,
- "reason": "Bridge not found"
- },
- {
- "code": 409,
- "reason": "Bridge not in Stasis application"
- },
- {
- "code": 422,
- "reason": "Channel not in this bridge"
- }
- ]
- }
- ]
- },
- {
- "path": "/bridges/{bridgeId}/moh",
- "description": "Play music on hold to a bridge",
- "operations": [
- {
- "httpMethod": "POST",
- "summary": "Play music on hold to a bridge or change the MOH class that is playing.",
- "nickname": "startMoh",
- "responseClass": "void",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "mohClass",
- "description": "Channel's id",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- }
- ],
- "errorResponses": [
- {
- "code": 404,
- "reason": "Bridge not found"
- },
- {
- "code": 409,
- "reason": "Bridge not in Stasis application"
- }
- ]
- },
- {
- "httpMethod": "DELETE",
- "summary": "Stop playing music on hold to a bridge.",
- "notes": "This will only stop music on hold being played via POST bridges/{bridgeId}/moh.",
- "nickname": "stopMoh",
- "responseClass": "void",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- }
- ],
- "errorResponses": [
- {
- "code": 404,
- "reason": "Bridge not found"
- },
- {
- "code": 409,
- "reason": "Bridge not in Stasis application"
- }
- ]
- }
- ]
- },
- {
- "path": "/bridges/{bridgeId}/play",
- "description": "Play media to the participants of a bridge",
- "operations": [
- {
- "httpMethod": "POST",
- "summary": "Start playback of media on a bridge.",
- "notes": "The media URI may be any of a number of URI's. Currently sound:, recording:, number:, digits:, characters:, and tone: URI's are supported. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)",
- "nickname": "play",
- "responseClass": "Playback",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "media",
- "description": "Media's URI to play.",
- "paramType": "query",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "lang",
- "description": "For sounds, selects language for sound.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "offsetms",
- "description": "Number of media to skip before playing.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "int",
- "defaultValue": 0,
- "allowableValues": {
- "valueType": "RANGE",
- "min": 0
- }
- },
- {
- "name": "skipms",
- "description": "Number of milliseconds to skip for forward/reverse operations.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "int",
- "defaultValue": 3000,
- "allowableValues": {
- "valueType": "RANGE",
- "min": 0
- }
- },
- {
- "name": "playbackId",
- "description": "Playback Id.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- }
- ],
- "errorResponses": [
- {
- "code": 404,
- "reason": "Bridge not found"
- },
- {
- "code": 409,
- "reason": "Bridge not in a Stasis application"
- }
- ]
- }
- ]
- },
- {
- "path": "/bridges/{bridgeId}/play/{playbackId}",
- "description": "Play media to a bridge",
- "operations": [
- {
- "httpMethod": "POST",
- "summary": "Start playback of media on a bridge.",
- "notes": "The media URI may be any of a number of URI's. Currently sound: and recording: URI's are supported. This operation creates a playback resource that can be used to control the playback of media (pause, rewind, fast forward, etc.)",
- "nickname": "playWithId",
- "responseClass": "Playback",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "playbackId",
- "description": "Playback ID.",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "media",
- "description": "Media's URI to play.",
- "paramType": "query",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "lang",
- "description": "For sounds, selects language for sound.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "offsetms",
- "description": "Number of media to skip before playing.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "int",
- "defaultValue": 0,
- "allowableValues": {
- "valueType": "RANGE",
- "min": 0
- }
- },
- {
- "name": "skipms",
- "description": "Number of milliseconds to skip for forward/reverse operations.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "int",
- "defaultValue": 3000,
- "allowableValues": {
- "valueType": "RANGE",
- "min": 0
- }
- }
- ],
- "errorResponses": [
- {
- "code": 404,
- "reason": "Bridge not found"
- },
- {
- "code": 409,
- "reason": "Bridge not in a Stasis application"
- }
- ]
- }
- ]
- },
- {
- "path": "/bridges/{bridgeId}/record",
- "description": "Record audio on a bridge",
- "operations": [
- {
- "httpMethod": "POST",
- "summary": "Start a recording.",
- "notes": "This records the mixed audio from all channels participating in this bridge.",
- "nickname": "record",
- "responseClass": "LiveRecording",
- "parameters": [
- {
- "name": "bridgeId",
- "description": "Bridge's id",
- "paramType": "path",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "name",
- "description": "Recording's filename",
- "paramType": "query",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "format",
- "description": "Format to encode audio in",
- "paramType": "query",
- "required": true,
- "allowMultiple": false,
- "dataType": "string"
- },
- {
- "name": "maxDurationSeconds",
- "description": "Maximum duration of the recording, in seconds. 0 for no limit.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "int",
- "defaultValue": 0,
- "allowableValues": {
- "valueType": "RANGE",
- "min": 0
- }
- },
- {
- "name": "maxSilenceSeconds",
- "description": "Maximum duration of silence, in seconds. 0 for no limit.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "int",
- "defaultValue": 0,
- "allowableValues": {
- "valueType": "RANGE",
- "min": 0
- }
- },
- {
- "name": "ifExists",
- "description": "Action to take if a recording with the same name already exists.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string",
- "defaultValue": "fail",
- "allowableValues": {
- "valueType": "LIST",
- "values": [
- "fail",
- "overwrite",
- "append"
- ]
- }
- },
- {
- "name": "beep",
- "description": "Play beep when recording begins",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "boolean",
- "defaultValue": false
- },
- {
- "name": "terminateOn",
- "description": "DTMF input to terminate recording.",
- "paramType": "query",
- "required": false,
- "allowMultiple": false,
- "dataType": "string",
- "defaultValue": "none",
- "allowableValues": {
- "valueType": "LIST",
- "values": [
- "none",
- "any",
- "*",
- "#"
- ]
- }
- }
- ],
- "errorResponses": [
- {
- "code": 400,
- "reason": "Invalid parameters"
- },
- {
- "code": 404,
- "reason": "Bridge not found"
- },
- {
- "code": 409,
- "reason": "Bridge is not in a Stasis application; A recording with the same name already exists on the system and can not be overwritten because it is in progress or ifExists=fail"
- },
- {
- "code": 422,
- "reason": "The format specified is unknown on this system"
- }
- ]
- }
- ]
- }
- ],
- "models": {
- "Bridge": {
- "id": "Bridge",
- "description": "The merging of media from one or more channels.\n\nEveryone on the bridge receives the same audio.",
- "properties": {
- "id": {
- "type": "string",
- "description": "Unique identifier for this bridge",
- "required": true
- },
- "technology": {
- "type": "string",
- "description": "Name of the current bridging technology",
- "required": true
- },
- "bridge_type": {
- "type": "string",
- "description": "Type of bridge technology",
- "required": true,
- "allowableValues": {
- "valueType": "LIST",
- "values": [
- "mixing",
- "holding"
- ]
- }
- },
- "bridge_class": {
- "type": "string",
- "description": "Bridging class",
- "required": true
- },
- "creator": {
- "type": "string",
- "description": "Entity that created the bridge",
- "required": true
- },
- "name": {
- "type": "string",
- "description": "Name the creator gave the bridge",
- "required": true
- },
- "channels": {
- "type": "List[string]",
- "description": "Ids of channels participating in this bridge",
- "required": true
- }
- }
- }
- }
- }
|