Setting up your first webhook
Learn how to set up a webhook endpoint on your server which will listen to events sent from MTA
Last updated
Was this helpful?
Learn how to set up a webhook endpoint on your server which will listen to events sent from MTA
Last updated
Was this helpful?
You will need to create an endpoint on your server to receive the event notifications. MTA will send HTTP POST
requests to this endpoint and will expect it to return a response with a 200
HTTP status code. If other status codes are returned, this will be treated as a failed request. You can configure when registering your webhook.
Once configured and registered, this endpoint will receive the event payloads from MTA. The body of the requests are JSON; you can view the .
MTA will send HTTP POST
requests to the URL of your server endpoint.
A url
must be specified for each webhook event type that you register. You can configure multiple event types to be sent to the same destination URL endpoint. This would require multiple calls to the endpoint for each event type you want to receive, each with the same url
field.
Example URL:
When registering a webhook you are required to provide a secret
value to MTA. This is typically 128 character hexadecimal string
. This is used for security to validate that the requests you receive are from MTA.
MTA will generate a signature using the request body and the secret
. This is set as a X-Signature
header in the request MTA sends to your endpoint.
Your webhook listener should validate the request is from MTA by generating the signature of the request body and comparing it to the value of the X-Signature
header.
You will need to register your webhook endpoint for each event type you want to receive. To do this you will call the /webhooks
endpoint of the MTA API.
Required fields:
event: string
- Choose which you want to receive the event notifications for. This can be one of the following: message-reply
, delivery-status
,message-send
, or number-opt-in
.
url: string
- This is your hosted URL endpoint (created in step 2 above) that MTA will make a POST
request to when events trigger.
secret: string
- This is shared secret between your organization and MTA (created in step 3 above).
Example request:
Example successful 200
response:
Once your webhook is registered, you will start receiving the when that event is triggered. Your server can parse this JSON and use this payload data however you configure your server.
Your webhook configuration can be updated after registration by calling Update Webhook endpoint PATCH
https://api.mobile-text-alerts.com/{VERSION}/webhooks/{webhookId}
using the {webhookId}
that was returned when first registering the webhook.