Skip to main content
Is it time to unsubscribe a user from using your service? Hit this endpoint right here:
POST
https://api.taag.cc/v1/subscribers/unsubscribe

Authorization

All you need is to include your secret key as a value of authorization in the header and hit the endpoint above.
Authorization: taag_sk_mode_xxxxxxxxx
Authorization
string
required
Use the secret key that matches the mode you are in TEST or LIVE

Request body

{
	"subscriberId": "f3a5e5afda82acd2569415e869193d9d"
}
subscriberId
string
required
Use the subscriberId you received to let Taag know which precise user is unsubscribing

Response

After the user is unsubcribed you will immediately get this response:
    {
        "message": "Subscriber unsubscribed successfully",
        "mode": "TEST",
        "subscriber": {
            "email": "[email protected]",
            "subscriberId": "f3a5e5afda82acd2569415e869193d9d",
            "status": "UNSUBSCRIBED",
            "unsubscribedAt": "2025-08-26T19:48:57.918Z"
        }
    }