Delete SMS suppression
Remove a phone number from the organization suppression list.
DELETE /app/subscribers/sms/suppression/{phone}
Removes a suppression entry for the given E.164 phone number from your organization's list in StatusDashboard. This is the authoritative record used to skip sends before they reach the messaging provider.
Removing an entry allows notification sends to the number again on the next qualifying event or subscription text, unless the carrier still rejects the destination. The platform does not auto-resend or trigger follow-up actions. If the number is still invalid or opted out at the carrier level, a subsequent failure may re-add the entry.
For opt-out suppressions, the recipient should also reply START (or an equivalent re-opt-in keyword) when appropriate. Removing the row here alone may not restore deliverability — a failed send can re-add an opt-out suppression automatically.
Requires the admin or subscriber role and the SMS notifications feature entitlement.
Path parameters
| Parameter | Type | Description |
|---|---|---|
phone | string | E.164 phone number to remove from the suppression list (URL-encode + as %2B) |
Request
See API Basics for required headers.
Sample request
curl -X DELETE "https://api.statusdashboard.com/app/subscribers/sms/suppression/%2B14155552671" \
-H "Authorization: Bearer bcf847abf5c6:def456"Sample response
Status: 204 No Content
No response body.
Error responses
| Status | When |
|---|---|
400 | Invalid phone path parameter |
403 | Missing required role, or feature disabled |
404 | Suppression entry not found |

