Skip to main content

Event Overview

Event Type: SUBSCRIPTION_STATUS
Category: Subscription
Description: Subscription status has been updated
This webhook is triggered when a subscription status changes or subscription information is updated.

Payload Schema

{
    "event_type": "SUBSCRIPTION_STATUS",
    "event_time": "2024-02-15 16:53:15",
    "version": "1.0",
    "sequence_number": "a3791670-7c5d-4a86-aa7a-fe35e58a9dbb",
    "data": {
        "subscriptions": [
            {
                "subscription_id": "SUB123456",
                "status": "ACTIVE",
                "billing_amount": 1000.00,
                "billing_currency": "INR",
                "billing_cycle": "MONTHLY",
                "payment_start_date": "2024-01-01",
                "payment_end_date": "2024-12-31"
            }
        ]
    }
}

Field Specifications

event_type
string
required
Always "SUBSCRIPTION_STATUS" for this webhook event
event_time
string
required
Timestamp when the event occurred in YYYY-MM-DD HH:MM:SS formatExample: "2024-02-15 16:53:15"
version
string
required
Webhook payload version (currently “1.0”)
sequence_number
string
required
Unique identifier for the event instanceExample: "a3791670-7c5d-4a86-aa7a-fe35e58a9dbb"
data
object
required
Event-specific data payload containing subscription details