Skip to content

KAZOO Support Channels

This documentation is curated by 2600Hz as part of the KAZOO open source project. Join our community forums here for peer support. Only features in the docs.2600hz.com/supported space are included as part of our 2600Hz Support Services plan.

Mms#

About Mms#

Schema#

mms document

Key Description Type Default Required Support Level
body mime encoded mms message string(1..) false
from caller-id-number, taken from user if absent string() false
to callee-id-number string() true

Fetch#

GET /v2/accounts/{ACCOUNT_ID}/mms

curl -v -X GET \
    -H "X-Auth-Token: {AUTH_TOKEN}" \
    http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/mms

Create#

PUT /v2/accounts/{ACCOUNT_ID}/mms

curl -v -X PUT \
    -H "X-Auth-Token: {AUTH_TOKEN}" \
    http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/mms

Fetch#

GET /v2/accounts/{ACCOUNT_ID}/mms/{SMS_ID}

curl -v -X GET \
    -H "X-Auth-Token: {AUTH_TOKEN}" \
    http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/mms/{SMS_ID}

Remove#

DELETE /v2/accounts/{ACCOUNT_ID}/mms/{SMS_ID}

curl -v -X DELETE \
    -H "X-Auth-Token: {AUTH_TOKEN}" \
    http://{SERVER}:8000/v2/accounts/{ACCOUNT_ID}/mms/{SMS_ID}