A subscription change is recorded when an email address is added or removed from a Message Stream's Suppression list. An email address is added to a Suppression List after a Hard Bounce, Spam Complaint, Unsubscribe, or Manual Suppression. A manual suppression is created in Postmark's UI or using the API.
An email address is removed from the suppression list manually by choosing an address to reactivate in Postmark's UI or using the API.
You can also get the suppression list using the API.
Note: The datetime for the ChangedAt field is in ISO 8601 format.
When logged into Postmark, select the Server, the Message Stream, and then go to the Webhooks tab. Choose Add webhook and input your webhook URL in Webhook URL and then select the Subscription Change checkbox.
You can modify the SubscriptionChange field using the Webhooks API to edit an existing Webhook. You can also use the Webhooks API to create webhooks and set the SubscriptionChange field at the same time. After setting the URL, verify the webhook so you know it's reachable before events start flowing. See Verifying your webhook.
An example of the full JSON document that would be POSTed to your webhook URL is to the right.
{
"RecordType": "SubscriptionChange",
"MessageID": "883953f4-6105-42a2-a16a-77a8eac79483",
"ServerID": 23,
"MessageStream": "outbound",
"ChangedAt": "2026-11-05T16:33:54.9070259Z",
"Recipient": "margareth@nasa.com",
"Origin": "Recipient",
"SuppressSending": true,
"SuppressionReason": "HardBounce",
"Tag": "welcome-email",
"Metadata": {
"PropA": "some value",
"PropB": "some value"
}
}
If you’re developing on your local machine or don’t have a public URL for your API, the cURL request example below sends a test webhook to your service. Replace <your-webhook-url>, run the command, and verify it accepts and processes the event as expected.
curl <your-webhook-url> \
-X POST \
-H "Content-Type: application/json" \
-d '{
"RecordType": "SubscriptionChange",
"MessageID": "883953f4-6105-42a2-a16a-77a8eac79483",
"ServerID": 23,
"MessageStream": "outbound",
"ChangedAt": "2026-11-05T16:33:54.9070259Z",
"Recipient": "margareth@nasa.com",
"Origin": "Recipient",
"SuppressSending": true,
"SuppressionReason": "HardBounce",
"Tag": "welcome-email",
"Metadata": {
"PropA": "some value",
"PropB": "some value"
}
}'