Skip to main content
POST
/
v1
/
Applications
Create Application
curl --request POST \
  --url https://api.example.com/v1/Applications \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_sid": "",
  "call_hook": {
    "method": "POST",
    "url": "https://public-apps.dev.voxeme.com/hello-world"
  },
  "call_status_hook": {
    "method": "POST",
    "url": "https://public-apps.dev.voxeme.com/call-status"
  },
  "name": "my test app",
  "speech_recognizer_language": "en-US",
  "speech_recognizer_vendor": "google",
  "speech_synthesis_language": "en-US",
  "speech_synthesis_vendor": "google",
  "speech_synthesis_voice": "en-US-Standard-C"
}
'
{
  "sid": "bd66b946-0af4-4283-b972-d0d4b0d6f088"
}

Body

application/json
account_sid
string
Example:

""

call_hook
object
call_status_hook
object
name
string
Example:

"my test app"

speech_recognizer_language
string
Example:

"en-US"

speech_recognizer_vendor
string
Example:

"google"

speech_synthesis_language
string
Example:

"en-US"

speech_synthesis_vendor
string
Example:

"google"

speech_synthesis_voice
string
Example:

"en-US-Standard-C"

Response

201 - application/json

Create Application

sid
string
Example:

"bd66b946-0af4-4283-b972-d0d4b0d6f088"