Skip to main content

Subscription Expired

This event is triggered when a subscriber's onetime or recurring mango subscription has expired.

Event Type

subscription.expired

Setting Up the Webhook

To subscribe to this webhook event, configure your webhook endpoint with the following:

curl -X 'POST' \
'https://api-prod-new.tagmango.com/api/v1/integration/webhook/webhook' \
-H 'accept: application/json' \
-H 'x-api-key: <Your API Key>' \
-H 'Content-Type: application/json' \
-d '{
"hookUrl": "<your webhook url>",
"event": "subscription.expired",
"mango": "<mango to be associated> (optional sends all mango related events if not specified)"
}'

Parameters

ParameterTypeRequiredDescription
hookUrlstringYesYour webhook endpoint URL
eventstringYesMust be `subscription.expired`
mangostringNoSpecific mango ID to monitor. If not specified, receives events for all mangoes

Webhook Payload

When a subscription expires, TagMango will send a POST request to your webhook URL with the following payload:

Example

{
"name": "Subscriber Name",
"email": "someone@example.com",
"phone": 9999999999,
"mangoRecurringType": "weekly",
"mangoTitle": "Mango title",
"mangoLink": "https://tagmango.com/web/checkout/1234567890",
"lastPurchaseDate": "14 Jul 2025"
}

Schema

name
string
The subscriber's full name
email
string
The subscriber's email address
phone
number
The subscriber's phone number
mangoRecurringType
string
Type of recurring subscription for the mango: onetime, daily, weekly, monthly, quarterly, halfyearly, yearly
mangoTitle
string
Title of the mango (product)
mangoLink
string
Public link to the mango (product) page
lastPurchaseDate
string
Formatted date of the last successful purchase

Handling the Webhook

Your webhook endpoint should:

  1. Respond with 200 status - Return a 200 HTTP status code to acknowledge receipt
  2. Process quickly - Respond within 30 seconds to avoid timeouts
  3. Implement idempotency - Handle duplicate events gracefully
  4. Verify authenticity - Validate the request using the provided authentication headers

Example Implementation

// Node.js Express example
app.post("/webhook", (req, res) => {
const payload = req.body;

// Verify the webhook authenticity (implement based on your security setup)
if (!verifyWebhook(req)) {
return res.status(401).send("Unauthorized");
}

// Process the webhook event
try {
console.log("Event data:", JSON.stringify(payload, null, 2));

// Your business logic here
// Process the event data according to your application needs
processWebhookEvent(eventType, payload);
} catch (error) {
console.error("Error processing webhook:", error);
// You might want to return 500 here depending on your retry policy
}

// Acknowledge receipt
res.status(200).send("OK");
});

function processWebhookEvent(eventType, payload) {
// Implement your custom logic based on the event type and payload
// This is where you'll handle the webhook data according to your business requirements

// Examples of what you might do:
// - Store event data in your database
// - Send notifications to users
// - Update user records
// - Trigger automated workflows
// - Sync data with external systems

console.log(`Processing ${eventType} event for your application`);
}