Untitled

 avatar
unknown
json
a year ago
1.6 kB
3
Indexable
// engage.so with single currency 

{
  "plan_id": "engage_so_service_usd",
  "plan_name": "Engage.so Service Subscription",
  "currency": "USD",
  "interval": "monthly",
  "charge_on": "customer_enrollment",
  "pssp": "stripe",
  "tiers": [
    {
      "tier_name": "Free Tier",
      "amount": 0, // Free
      "metrics": [
        {
          "metric_name": "SMS",
          "allowance": 100
        },
        {
          "metric_name": "Emails",
          "allowance": 1000,
          "overage_charge_per_unit": 0 // No overage charge for free tier
        }
      ]
    },
    {
      "tier_name": "Standard Tier",
      "amount": 5000, // $50 in subcurrency units (cents)
      "metrics": [
        {
          "metric_name": "SMS",
          "allowance": 500
        },
        {
          "metric_name": "Emails",
          "allowance": 5000,
          "overage_charge_per_unit": 5 // 0.05 USD per additional email
        }
      ]
    },
    {
      "tier_name": "Premium Tier",
      "amount": 15000, // $150 in subcurrency units (cents)
      "metrics": [
        {
          "metric_name": "SMS",
          "allowance": 1000
        },
        {
          "metric_name": "Emails",
          "allowance": 15000,
          "overage_charge_per_unit": 3 // 0.03 USD per additional email
        }
      ]
    }
  ],
  "description": "Multi-tier subscription service for Engage.so, offering SMS and Email services.",
  "invoice_name": "Engage.so Monthly Subscription",
  "metadata": {
    "service_type": "Communication Tools",
    "global_support": "Yes"
  }
}
Editor is loading...
Leave a Comment