Skip to main content
POST
/
api
/
webhook
Handle inbound SMS webhook (Sinch)
curl --request POST \
  --url https://your-instance.example.com/api/webhook \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "from": "<string>",
  "to": "<string>",
  "body": "<string>",
  "operator_id": "<string>",
  "received_at": "<string>",
  "type": "<string>"
}
'
{}

Body

application/json
id
string
required
from
string
required
to
string
required
body
string
required
operator_id
string
received_at
string
type
string

Response

Webhook accepted

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