/mrcpclient/speechserver1

Resource URI

/mrcpclient/speechserver1

HTTP GET

Retrieves the MRCP Client Speechserver1 configuration.

GET /mrcpclient/speechserver1

Method

Response Payload

JSON

{
  "id": "SERVER_1",
  "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 Speechserver1 resource.

PUT /mrcpclient/speechserver1

Method Request Payload Response Payload
JSON

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

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