Skip to main content
POST
/
api
/
v3
/
sms
/
clients
Register SMS Webhook
curl --request POST \
  --url https://sandbox-api.kotanipay.io/api/v3/sms/clients \
  --header 'Content-Type: application/json' \
  --data '
{
  "webhookUrl": "https://myapp.com/webhooks/sms"
}
'
Register a webhook URL to receive real-time notifications for incoming SMS messages and delivery reports. Only one webhook can be registered per integrator account. Returns a 409 if a webhook is already registered — use the update endpoint to change it.

Body

application/json
webhookUrl
string
required

Webhook URL to receive SMS notifications

Example:

"https://myapp.com/webhooks/sms"

Response

201 - undefined