/mrcpclient/speechserver2

Resource URI

/mrcpclient/speechserver2

HTTP GET

Retrieves the MRCP Client Speechserver2 configuration.

GET /mrcpclient/speechserver2

Method

Response Payload

JSON

{
  "id": "SERVER_2",
  "protocol": "MRCP/2.0",
  "session": "SIP/2.0",
  "transport": "TCP",
  "address": "127.0.0.1",
  "port": "5060",
  "asr": "true",
  "tts": "false"
}

HTTP PUT

Configures the MRCP Client speechserver2 resource.

PUT /mrcpclient/speechserver2

Method Request Payload Response Payload
JSON

{
  "transport": "UDP",
  "address": "127.0.0.1",
  "port": "5080",
  "asr": "false",
  "tts": "true"
}

{
  "id": "SERVER_2",
  "protocol": "MRCP/2.0",
  "session": "SIP/2.0",
  "transport": "UDP",
  "address": "127.0.0.1",
  "port": "5080",
  "asr": "false",
  "tts": "true"
}