For the complete documentation index, see llms.txt. This page is also available as Markdown.

Create Voicemail Box

Create a voicemail box

GET or POST Request

https://v1.api19.com/voicemail/inbox/create

Create a new voicemail box to route numbers to

HTTP Post Variables Supported

Argument

Required

Type

box_id

yes

2-12 digits

name

yes

2-100 characters

password

yes

4 digits

emails

yes

emails separated by a comma

key

yes

api key

curl https://v1.api19.com/voicemail/inbox/create \
 -d 'key=api_token' \
 -d 'box_id=2233' \
 -d 'name=my+box' \
 -d 'password=8833' \
 -d 'emails=me@example.com,you@example.com'
curl "https://v1.api19.com/voicemail/inbox/create?key=api_token&box_id=2233&name=my+box&password=8833&emails=me@example.com,you@example.com"
{"status":"ok","message":"ok"}
OR
{"status":"error","error":"Password is not 4 characters"}
OR
{"status":"error","error":"Box id cannot start with 0"}
OR
{"status":"error","error":"Box id is not 2-12 digits"}
OR
{"status":"error","error":"Invalid Email: moo@moo"}
OR
{"status":"error","error":"box id exists, try another"}


Last updated