Skip to main content
POST
/
api
/
webhook
/
mms
Handle inbound MMS webhook (Sinch)
curl --request POST \
  --url https://your-instance.example.com/api/webhook/mms \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "origin": "<string>",
  "from": "<string>",
  "to": "<string>",
  "body": "<string>",
  "media": [
    {
      "url": "<string>",
      "content_type": "<string>",
      "size": 123
    }
  ]
}
'
{}

Body

application/json
id
string
origin
string
from
string
to
string
body
string
media
object[]

Response

Webhook accepted

Generic response envelope. Endpoint-specific fields are intentionally open.