Create Voicemail Box
Create a voicemail box
GET or POST Request
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 '[email protected],[email protected]'curl "https://v1.api19.com/voicemail/inbox/create?key=api_token&box_id=2233&name=my+box&password=8833&[email protected],[email protected]"{"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