mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	upgrade: Make it possible to upgrade to a provided tier.
Main work is maintaining context during various redirects and and passing the context to the final upgrade process.
This commit is contained in:
		@@ -587,6 +587,7 @@ class UpgradePageParams(TypedDict):
 | 
			
		||||
    monthly_price: int
 | 
			
		||||
    seat_count: int
 | 
			
		||||
    billing_base_url: str
 | 
			
		||||
    tier: int
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class UpgradePageSessionTypeSpecificContext(TypedDict):
 | 
			
		||||
@@ -959,12 +960,18 @@ class BillingSession(ABC):
 | 
			
		||||
    def create_card_update_session_for_upgrade(
 | 
			
		||||
        self,
 | 
			
		||||
        manual_license_management: bool,
 | 
			
		||||
        tier: int,
 | 
			
		||||
    ) -> Dict[str, Any]:
 | 
			
		||||
        metadata = self.get_metadata_for_stripe_update_card()
 | 
			
		||||
        customer = self.update_or_create_stripe_customer()
 | 
			
		||||
        cancel_url = f"{self.billing_session_url}/upgrade/"
 | 
			
		||||
        if manual_license_management:
 | 
			
		||||
            cancel_url = f"{self.billing_session_url}/upgrade/?manual_license_management=true"
 | 
			
		||||
 | 
			
		||||
        # URL when user cancels the card update session.
 | 
			
		||||
        base_cancel_url = f"{self.billing_session_url}/upgrade/"
 | 
			
		||||
        params = {
 | 
			
		||||
            "manual_license_management": str(manual_license_management).lower(),
 | 
			
		||||
            "tier": str(tier),
 | 
			
		||||
        }
 | 
			
		||||
        cancel_url = f"{base_cancel_url}?{urlencode(params)}"
 | 
			
		||||
 | 
			
		||||
        stripe_session = stripe.checkout.Session.create(
 | 
			
		||||
            cancel_url=cancel_url,
 | 
			
		||||
@@ -979,6 +986,7 @@ class BillingSession(ABC):
 | 
			
		||||
            customer=customer,
 | 
			
		||||
            type=Session.CARD_UPDATE_FROM_UPGRADE_PAGE,
 | 
			
		||||
            is_manual_license_management_upgrade_session=manual_license_management,
 | 
			
		||||
            tier=tier,
 | 
			
		||||
        )
 | 
			
		||||
        return {
 | 
			
		||||
            "stripe_session_url": stripe_session.url,
 | 
			
		||||
@@ -1914,6 +1922,7 @@ class BillingSession(ABC):
 | 
			
		||||
                ),
 | 
			
		||||
                "seat_count": seat_count,
 | 
			
		||||
                "billing_base_url": self.billing_base_url,
 | 
			
		||||
                "tier": tier,
 | 
			
		||||
            },
 | 
			
		||||
            "using_min_licenses_for_plan": using_min_licenses_for_plan,
 | 
			
		||||
            "min_licenses_for_plan": min_licenses_for_plan,
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										17
									
								
								corporate/migrations/0029_session_tier.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								corporate/migrations/0029_session_tier.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
# Generated by Django 4.2.8 on 2023-12-18 09:39
 | 
			
		||||
 | 
			
		||||
from django.db import migrations, models
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class Migration(migrations.Migration):
 | 
			
		||||
    dependencies = [
 | 
			
		||||
        ("corporate", "0028_zulipsponsorshiprequest_requested_plan"),
 | 
			
		||||
    ]
 | 
			
		||||
 | 
			
		||||
    operations = [
 | 
			
		||||
        migrations.AddField(
 | 
			
		||||
            model_name="session",
 | 
			
		||||
            name="tier",
 | 
			
		||||
            field=models.SmallIntegerField(null=True),
 | 
			
		||||
        ),
 | 
			
		||||
    ]
 | 
			
		||||
@@ -119,6 +119,9 @@ class Session(models.Model):
 | 
			
		||||
    # Did the user opt to manually manage licenses before clicking on update button?
 | 
			
		||||
    is_manual_license_management_upgrade_session = models.BooleanField(default=False)
 | 
			
		||||
 | 
			
		||||
    # CustomerPlan tier that the user is upgrading to.
 | 
			
		||||
    tier = models.SmallIntegerField(null=True)
 | 
			
		||||
 | 
			
		||||
    def get_status_as_string(self) -> str:
 | 
			
		||||
        return {Session.CREATED: "created", Session.COMPLETED: "completed"}[self.status]
 | 
			
		||||
 | 
			
		||||
@@ -136,6 +139,7 @@ class Session(models.Model):
 | 
			
		||||
        session_dict[
 | 
			
		||||
            "is_manual_license_management_upgrade_session"
 | 
			
		||||
        ] = self.is_manual_license_management_upgrade_session
 | 
			
		||||
        session_dict["tier"] = self.tier
 | 
			
		||||
        event = self.get_last_associated_event()
 | 
			
		||||
        if event is not None:
 | 
			
		||||
            session_dict["event_handler"] = event.get_event_handler_details_as_dict()
 | 
			
		||||
 
 | 
			
		||||
@@ -64,7 +64,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "paid": true,
 | 
			
		||||
      "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
      "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
      "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
      "payment_method_details": {
 | 
			
		||||
        "card": {
 | 
			
		||||
          "amount_authorized": 7200,
 | 
			
		||||
@@ -104,10 +104,9 @@
 | 
			
		||||
        },
 | 
			
		||||
        "type": "card"
 | 
			
		||||
      },
 | 
			
		||||
      "radar_options": {},
 | 
			
		||||
      "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
      "receipt_number": null,
 | 
			
		||||
      "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKIr9qqsGMgaM-GKNpmc6LBZoWb7DJvCIVhczLJKOYXKROrzmBYTFtupIgmreHcTL1xLwXB0pQP-R7gBA",
 | 
			
		||||
      "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKP6UgawGMgaOL5RXlKc6LBarBczvPL_SihsBzcchh06gDMOnxb_zui__m8_slBcY0vwnaOkAhp7iFBjY",
 | 
			
		||||
      "refunded": false,
 | 
			
		||||
      "refunds": {
 | 
			
		||||
        "data": [],
 | 
			
		||||
 
 | 
			
		||||
@@ -64,7 +64,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "paid": true,
 | 
			
		||||
      "payment_intent": "pi_NORMALIZED00000000000002",
 | 
			
		||||
      "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
      "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
      "payment_method_details": {
 | 
			
		||||
        "card": {
 | 
			
		||||
          "amount_authorized": 36000,
 | 
			
		||||
@@ -104,10 +104,9 @@
 | 
			
		||||
        },
 | 
			
		||||
        "type": "card"
 | 
			
		||||
      },
 | 
			
		||||
      "radar_options": {},
 | 
			
		||||
      "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
      "receipt_number": null,
 | 
			
		||||
      "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKJT9qqsGMgbmGcE2CPg6LBYt6tPCI7CnKaxaLVq3zjSaM7atoyWnbp6xDOd4JEAbIIuFCeKskEzYWUyb",
 | 
			
		||||
      "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKIiVgawGMgb7XVOQnjk6LBYow84AMTLAKNZvl-spf54uA3qT3dsPb4mAba1NCNv3JCzbKCmK4dT0GZ4w",
 | 
			
		||||
      "refunded": false,
 | 
			
		||||
      "refunds": {
 | 
			
		||||
        "data": [],
 | 
			
		||||
@@ -190,7 +189,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "paid": true,
 | 
			
		||||
      "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
      "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
      "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
      "payment_method_details": {
 | 
			
		||||
        "card": {
 | 
			
		||||
          "amount_authorized": 7200,
 | 
			
		||||
@@ -230,10 +229,9 @@
 | 
			
		||||
        },
 | 
			
		||||
        "type": "card"
 | 
			
		||||
      },
 | 
			
		||||
      "radar_options": {},
 | 
			
		||||
      "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
      "receipt_number": null,
 | 
			
		||||
      "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKJT9qqsGMgZmMGKxY746LBarTbqnnWLLGRzmrQAWL3_ig-D1uUENWBVpjxcDGfuFmMRWLxqSgEkXJuqq",
 | 
			
		||||
      "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKIiVgawGMgbItsJKirI6LBaDYN_08wYesKwnMM4QYqeJtUK9zOTXyIMTLIV97-YV6ZnRkLdmGWv_qOW0",
 | 
			
		||||
      "refunded": false,
 | 
			
		||||
      "refunds": {
 | 
			
		||||
        "data": [],
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
    "default_payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
    "default_payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
      "id": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
      "id": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
      "id": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
      "id": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
      "id": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
      "id": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
      "id": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
      "id": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -19,7 +19,7 @@
 | 
			
		||||
          "invoice_prefix": "NORMA01",
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "custom_fields": null,
 | 
			
		||||
            "default_payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
            "default_payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
            "footer": null,
 | 
			
		||||
            "rendering_options": null
 | 
			
		||||
          },
 | 
			
		||||
@@ -43,13 +43,13 @@
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcWDEQaroqDjsDYC5kGA8",
 | 
			
		||||
      "id": "evt_1OOgy2DEQaroqDjsJJv6ekyN",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0001",
 | 
			
		||||
        "idempotency_key": "ec0d8ceb-bc0b-4141-9ecf-9f91d42f5a7e"
 | 
			
		||||
        "idempotency_key": "51e1e255-ef9e-4907-9da1-bcbaef805bb6"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "customer.updated"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,597 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [],
 | 
			
		||||
  "data": [
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAy0200CjUMxGPh?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAy0200CjUMxGPh/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0001",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        },
 | 
			
		||||
        "previous_attributes": {
 | 
			
		||||
          "attempted": false,
 | 
			
		||||
          "auto_advance": true,
 | 
			
		||||
          "effective_at": null,
 | 
			
		||||
          "ending_balance": null,
 | 
			
		||||
          "hosted_invoice_url": null,
 | 
			
		||||
          "invoice_pdf": null,
 | 
			
		||||
          "next_payment_attempt": 1000000000,
 | 
			
		||||
          "number": null,
 | 
			
		||||
          "paid": false,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "auto"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "status": "draft",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": null,
 | 
			
		||||
            "paid_at": null
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgyJDEQaroqDjs96APcLGB",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "9e071d3b-ae9c-4a0f-9040-e22ee0dfcc56"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.updated"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": false,
 | 
			
		||||
          "auto_advance": true,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": null,
 | 
			
		||||
          "ending_balance": null,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": null,
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": null,
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": 1000000000,
 | 
			
		||||
          "number": null,
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": false,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "auto"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "draft",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": null,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": null,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgyIDEQaroqDjskxGUBVqT",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "f7d12884-aaf5-4013-9094-a5407f1d7212"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.created"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "amount": 36000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "date": 1000000000,
 | 
			
		||||
          "description": "Zulip Cloud Standard",
 | 
			
		||||
          "discountable": false,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "object": "invoiceitem",
 | 
			
		||||
          "period": {
 | 
			
		||||
            "end": 1357095845,
 | 
			
		||||
            "start": 1325473445
 | 
			
		||||
          },
 | 
			
		||||
          "plan": null,
 | 
			
		||||
          "price": {
 | 
			
		||||
            "active": false,
 | 
			
		||||
            "billing_scheme": "per_unit",
 | 
			
		||||
            "created": 1000000000,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "custom_unit_amount": null,
 | 
			
		||||
            "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "lookup_key": null,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "nickname": null,
 | 
			
		||||
            "object": "price",
 | 
			
		||||
            "product": "prod_NORMALIZED0001",
 | 
			
		||||
            "recurring": null,
 | 
			
		||||
            "tax_behavior": "unspecified",
 | 
			
		||||
            "tiers_mode": null,
 | 
			
		||||
            "transform_quantity": null,
 | 
			
		||||
            "type": "one_time",
 | 
			
		||||
            "unit_amount": 6000,
 | 
			
		||||
            "unit_amount_decimal": "6000"
 | 
			
		||||
          },
 | 
			
		||||
          "proration": false,
 | 
			
		||||
          "quantity": 6,
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "tax_rates": [],
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "unit_amount": 6000,
 | 
			
		||||
          "unit_amount_decimal": "6000"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgyHDEQaroqDjsW3nFrA8e",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0004",
 | 
			
		||||
        "idempotency_key": "5b281f95-9953-4b59-818d-b66f4c6164e5"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "amount": -36000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "date": 1000000000,
 | 
			
		||||
          "description": "Payment (Card ending in 4242)",
 | 
			
		||||
          "discountable": false,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "object": "invoiceitem",
 | 
			
		||||
          "period": {
 | 
			
		||||
            "end": 1000000000,
 | 
			
		||||
            "start": 1000000000
 | 
			
		||||
          },
 | 
			
		||||
          "plan": null,
 | 
			
		||||
          "price": {
 | 
			
		||||
            "active": false,
 | 
			
		||||
            "billing_scheme": "per_unit",
 | 
			
		||||
            "created": 1000000000,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "custom_unit_amount": null,
 | 
			
		||||
            "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "lookup_key": null,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "nickname": null,
 | 
			
		||||
            "object": "price",
 | 
			
		||||
            "product": "prod_NORMALIZED0002",
 | 
			
		||||
            "recurring": null,
 | 
			
		||||
            "tax_behavior": "unspecified",
 | 
			
		||||
            "tiers_mode": null,
 | 
			
		||||
            "transform_quantity": null,
 | 
			
		||||
            "type": "one_time",
 | 
			
		||||
            "unit_amount": -36000,
 | 
			
		||||
            "unit_amount_decimal": "-36000"
 | 
			
		||||
          },
 | 
			
		||||
          "proration": false,
 | 
			
		||||
          "quantity": 1,
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "tax_rates": [],
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "unit_amount": -36000,
 | 
			
		||||
          "unit_amount_decimal": "-36000"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgyHDEQaroqDjsNud0KjzJ",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0005",
 | 
			
		||||
        "idempotency_key": "2db2ae34-31d4-4d8e-937f-d3402283ed52"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
 
 | 
			
		||||
@@ -0,0 +1,453 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAz0200197CvhqE?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAz0200197CvhqE/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0001",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgyJDEQaroqDjsiExGjSf9",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "9e071d3b-ae9c-4a0f-9040-e22ee0dfcc56"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.paid"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAz0200197CvhqE?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAz0200197CvhqE/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0001",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgyJDEQaroqDjsSvhgkMRl",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "9e071d3b-ae9c-4a0f-9040-e22ee0dfcc56"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.finalized"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,230 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAz0200197CvhqE?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAz0200197CvhqE/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0001",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgyJDEQaroqDjsRXkfF6HY",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "9e071d3b-ae9c-4a0f-9040-e22ee0dfcc56"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.payment_succeeded"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
}
 | 
			
		||||
@@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
}
 | 
			
		||||
@@ -83,7 +83,7 @@
 | 
			
		||||
                },
 | 
			
		||||
                "paid": true,
 | 
			
		||||
                "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
                "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
                "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
                "payment_method_details": {
 | 
			
		||||
                  "card": {
 | 
			
		||||
                    "amount_authorized": 7200,
 | 
			
		||||
@@ -123,10 +123,9 @@
 | 
			
		||||
                  },
 | 
			
		||||
                  "type": "card"
 | 
			
		||||
                },
 | 
			
		||||
                "radar_options": {},
 | 
			
		||||
                "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
                "receipt_number": null,
 | 
			
		||||
                "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKIf9qqsGMgZb20Gi7do6LBb8Nk4YXcMYuHylkNS09JAb63jzjtrknnoa60TiX-hHWdshgcroMLKDWN5c",
 | 
			
		||||
                "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKPqUgawGMgZEDmwqloY6LBaOHpiSTrAoFmP9mBz74B_hzHtEI2O_Gl2W35cI-FkY2-0BLpcE6qn2C7sT",
 | 
			
		||||
                "refunded": false,
 | 
			
		||||
                "refunds": {
 | 
			
		||||
                  "data": [],
 | 
			
		||||
@@ -151,7 +150,7 @@
 | 
			
		||||
            "total_count": 1,
 | 
			
		||||
            "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000001"
 | 
			
		||||
          },
 | 
			
		||||
          "client_secret": "pi_NORMALIZED00000000000001_secret_TT71wq3meHmzTEd7mpZbqrDnP",
 | 
			
		||||
          "client_secret": "pi_NORMALIZED00000000000001_secret_nTi2uv53oaIydyDHv3mdyBMWm",
 | 
			
		||||
          "confirmation_method": "automatic",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
@@ -179,7 +178,7 @@
 | 
			
		||||
          "next_action": null,
 | 
			
		||||
          "object": "payment_intent",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
          "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
          "payment_method_configuration_details": null,
 | 
			
		||||
          "payment_method_options": {
 | 
			
		||||
            "card": {
 | 
			
		||||
@@ -205,13 +204,13 @@
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_3OIlcYDEQaroqDjs16WfiUYV",
 | 
			
		||||
      "id": "evt_3OOgy5DEQaroqDjs1NMI5y1K",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "89f4d29d-4c41-4c1d-baf7-b33a1c7d25ff"
 | 
			
		||||
        "id": "req_NORMALIZED0006",
 | 
			
		||||
        "idempotency_key": "c37824ac-ed1b-4442-a34d-23f9b9482db4"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "payment_intent.succeeded"
 | 
			
		||||
    },
 | 
			
		||||
@@ -283,7 +282,7 @@
 | 
			
		||||
          },
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
          "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
          "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
          "payment_method_details": {
 | 
			
		||||
            "card": {
 | 
			
		||||
              "amount_authorized": 7200,
 | 
			
		||||
@@ -323,10 +322,9 @@
 | 
			
		||||
            },
 | 
			
		||||
            "type": "card"
 | 
			
		||||
          },
 | 
			
		||||
          "radar_options": {},
 | 
			
		||||
          "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKIf9qqsGMgaRG54HB6k6LBYbdkPPJRe4ZuuV5tR6SrHKPTGj9DFYvf8ZlOiAmw8lVKk8NDaGGFlsjRM8",
 | 
			
		||||
          "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKPmUgawGMgZzNEK8ZTA6LBYAnusLR5dgHmedVg-98AE-zzlMPBsy6egqoEfightLoDSci1yZpaZYb5T1",
 | 
			
		||||
          "refunded": false,
 | 
			
		||||
          "refunds": {
 | 
			
		||||
            "data": [],
 | 
			
		||||
@@ -346,13 +344,13 @@
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_3OIlcYDEQaroqDjs1OA8t8hC",
 | 
			
		||||
      "id": "evt_3OOgy5DEQaroqDjs1Zmy1DdQ",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "89f4d29d-4c41-4c1d-baf7-b33a1c7d25ff"
 | 
			
		||||
        "id": "req_NORMALIZED0006",
 | 
			
		||||
        "idempotency_key": "c37824ac-ed1b-4442-a34d-23f9b9482db4"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "charge.succeeded"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -46,9 +46,9 @@
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo/pdf?s=ap",
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
@@ -61,8 +61,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -77,7 +77,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -111,8 +111,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -127,7 +127,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -157,12 +157,12 @@
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0001",
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
@@ -234,13 +234,13 @@
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcbDEQaroqDjs0RgNo7tS",
 | 
			
		||||
      "id": "evt_1OOgy8DEQaroqDjs4dhRnZw2",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "d8040535-2a29-417e-a8cd-313f534cb633"
 | 
			
		||||
        "id": "req_NORMALIZED0007",
 | 
			
		||||
        "idempotency_key": "00edae1e-b0e4-43e2-bd4a-d51a9ef975f1"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.updated"
 | 
			
		||||
    },
 | 
			
		||||
@@ -291,7 +291,7 @@
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": null,
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": null,
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
@@ -305,8 +305,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -321,7 +321,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -355,8 +355,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -371,7 +371,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -401,7 +401,7 @@
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -457,13 +457,13 @@
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcaDEQaroqDjsgW8xhHxB",
 | 
			
		||||
      "id": "evt_1OOgy7DEQaroqDjsDqNquu3y",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0004",
 | 
			
		||||
        "idempotency_key": "e1bdf299-f588-4704-ae2c-82d0debf6534"
 | 
			
		||||
        "id": "req_NORMALIZED0008",
 | 
			
		||||
        "idempotency_key": "34e8415e-a5de-4b95-9572-90ea6b1f69ee"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.created"
 | 
			
		||||
    },
 | 
			
		||||
@@ -479,7 +479,7 @@
 | 
			
		||||
          "description": "Zulip Cloud Standard",
 | 
			
		||||
          "discountable": false,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000001",
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000003",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -495,7 +495,7 @@
 | 
			
		||||
            "created": 1000000000,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "custom_unit_amount": null,
 | 
			
		||||
            "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
            "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "lookup_key": null,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
@@ -519,13 +519,13 @@
 | 
			
		||||
          "unit_amount_decimal": "1200"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcaDEQaroqDjsCma6I5rr",
 | 
			
		||||
      "id": "evt_1OOgy7DEQaroqDjsEepVDvh2",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0005",
 | 
			
		||||
        "idempotency_key": "cfb4b441-f25a-4d95-a2f0-f0f950bd40fe"
 | 
			
		||||
        "id": "req_NORMALIZED0009",
 | 
			
		||||
        "idempotency_key": "fda51987-3b8f-4b7a-a239-194e9b14039e"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
    },
 | 
			
		||||
@@ -541,7 +541,7 @@
 | 
			
		||||
          "description": "Payment (Card ending in 4242)",
 | 
			
		||||
          "discountable": false,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000002",
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000004",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -557,7 +557,7 @@
 | 
			
		||||
            "created": 1000000000,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "custom_unit_amount": null,
 | 
			
		||||
            "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
            "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "lookup_key": null,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
@@ -581,13 +581,13 @@
 | 
			
		||||
          "unit_amount_decimal": "-7200"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcZDEQaroqDjs6GyIO3FO",
 | 
			
		||||
      "id": "evt_1OOgy6DEQaroqDjsPLwCe6de",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0006",
 | 
			
		||||
        "idempotency_key": "13255827-b4d3-42fe-9f18-fbcb67305a04"
 | 
			
		||||
        "id": "req_NORMALIZED0010",
 | 
			
		||||
        "idempotency_key": "4d6e096d-9f4e-4351-8e3a-7fbe2a4aca09"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
    },
 | 
			
		||||
@@ -610,7 +610,7 @@
 | 
			
		||||
          "invoice_prefix": "NORMA01",
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "custom_fields": null,
 | 
			
		||||
            "default_payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
            "default_payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
            "footer": null,
 | 
			
		||||
            "rendering_options": null
 | 
			
		||||
          },
 | 
			
		||||
@@ -633,13 +633,13 @@
 | 
			
		||||
          "default_currency": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcZDEQaroqDjs2IZnZELZ",
 | 
			
		||||
      "id": "evt_1OOgy6DEQaroqDjsCAgqpBO2",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0006",
 | 
			
		||||
        "idempotency_key": "13255827-b4d3-42fe-9f18-fbcb67305a04"
 | 
			
		||||
        "id": "req_NORMALIZED0010",
 | 
			
		||||
        "idempotency_key": "4d6e096d-9f4e-4351-8e3a-7fbe2a4aca09"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "customer.updated"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -46,9 +46,9 @@
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjEw0200uGqIV7uQ?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjEw0200uGqIV7uQ/pdf?s=ap",
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
@@ -61,8 +61,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -77,7 +77,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -111,8 +111,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -127,7 +127,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -157,12 +157,12 @@
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "number": "NORMALI-0003",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
@@ -213,236 +213,13 @@
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlccDEQaroqDjsArfDmoTy",
 | 
			
		||||
      "id": "evt_1OOgy8DEQaroqDjs7hKFvgdM",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "d8040535-2a29-417e-a8cd-313f534cb633"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.payment_succeeded"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 7200,
 | 
			
		||||
                "amount_excluding_tax": 7200,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 1200,
 | 
			
		||||
                  "unit_amount_decimal": "1200"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "1200"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -7200,
 | 
			
		||||
                "amount_excluding_tax": -7200,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -7200,
 | 
			
		||||
                  "unit_amount_decimal": "-7200"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-7200"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcbDEQaroqDjsn0Gh2ZXB",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 1,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "d8040535-2a29-417e-a8cd-313f534cb633"
 | 
			
		||||
        "id": "req_NORMALIZED0007",
 | 
			
		||||
        "idempotency_key": "00edae1e-b0e4-43e2-bd4a-d51a9ef975f1"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.paid"
 | 
			
		||||
    },
 | 
			
		||||
@@ -492,9 +269,9 @@
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo/pdf?s=ap",
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
@@ -507,8 +284,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -523,7 +300,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -557,8 +334,8 @@
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
@@ -573,7 +350,7 @@
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
@@ -603,12 +380,12 @@
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "number": "NORMALI-0003",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
@@ -659,13 +436,13 @@
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcbDEQaroqDjshdrWm9Tg",
 | 
			
		||||
      "id": "evt_1OOgy8DEQaroqDjsdCmYopyE",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "d8040535-2a29-417e-a8cd-313f534cb633"
 | 
			
		||||
        "id": "req_NORMALIZED0007",
 | 
			
		||||
        "idempotency_key": "00edae1e-b0e4-43e2-bd4a-d51a9ef975f1"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.finalized"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,229 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [],
 | 
			
		||||
  "data": [
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 7200,
 | 
			
		||||
                "amount_excluding_tax": 7200,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 1200,
 | 
			
		||||
                  "unit_amount_decimal": "1200"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "1200"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -7200,
 | 
			
		||||
                "amount_excluding_tax": -7200,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -7200,
 | 
			
		||||
                  "unit_amount_decimal": "-7200"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-7200"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0003",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgy9DEQaroqDjsz6MtVaoJ",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0007",
 | 
			
		||||
        "idempotency_key": "00edae1e-b0e4-43e2-bd4a-d51a9ef975f1"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.payment_succeeded"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
 
 | 
			
		||||
@@ -1,60 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "address": null,
 | 
			
		||||
          "balance": 0,
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "default_currency": "usd",
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "delinquent": false,
 | 
			
		||||
          "description": "zulip (Zulip Dev)",
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "email": "hamlet@zulip.com",
 | 
			
		||||
          "id": "cus_NORMALIZED0001",
 | 
			
		||||
          "invoice_prefix": "NORMA01",
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "custom_fields": null,
 | 
			
		||||
            "default_payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
            "footer": null,
 | 
			
		||||
            "rendering_options": null
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {
 | 
			
		||||
            "realm_id": "1",
 | 
			
		||||
            "realm_str": "zulip"
 | 
			
		||||
          },
 | 
			
		||||
          "name": null,
 | 
			
		||||
          "next_invoice_sequence": 2,
 | 
			
		||||
          "object": "customer",
 | 
			
		||||
          "phone": null,
 | 
			
		||||
          "preferred_locales": [],
 | 
			
		||||
          "shipping": null,
 | 
			
		||||
          "tax_exempt": "none",
 | 
			
		||||
          "test_clock": null
 | 
			
		||||
        },
 | 
			
		||||
        "previous_attributes": {
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "default_payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK"
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcgDEQaroqDjsPE8wVcBq",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0007",
 | 
			
		||||
        "idempotency_key": "6e41d51b-0e25-4d1f-9da2-4472878eb45f"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "customer.updated"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": true,
 | 
			
		||||
  "data": [],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -5,359 +5,56 @@
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "amount": 36000,
 | 
			
		||||
          "amount_capturable": 0,
 | 
			
		||||
          "amount_details": {
 | 
			
		||||
            "tip": {}
 | 
			
		||||
          "address": null,
 | 
			
		||||
          "balance": 0,
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "default_currency": "usd",
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "delinquent": false,
 | 
			
		||||
          "description": "zulip (Zulip Dev)",
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "email": "hamlet@zulip.com",
 | 
			
		||||
          "id": "cus_NORMALIZED0001",
 | 
			
		||||
          "invoice_prefix": "NORMA01",
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "custom_fields": null,
 | 
			
		||||
            "default_payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
            "footer": null,
 | 
			
		||||
            "rendering_options": null
 | 
			
		||||
          },
 | 
			
		||||
          "amount_received": 36000,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "automatic_payment_methods": null,
 | 
			
		||||
          "canceled_at": null,
 | 
			
		||||
          "cancellation_reason": null,
 | 
			
		||||
          "capture_method": "automatic",
 | 
			
		||||
          "charges": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_captured": 36000,
 | 
			
		||||
                "amount_refunded": 0,
 | 
			
		||||
                "application": null,
 | 
			
		||||
                "application_fee": null,
 | 
			
		||||
                "application_fee_amount": null,
 | 
			
		||||
                "balance_transaction": "txn_NORMALIZED00000000000002",
 | 
			
		||||
                "billing_details": {
 | 
			
		||||
                  "address": {
 | 
			
		||||
                    "city": null,
 | 
			
		||||
                    "country": null,
 | 
			
		||||
                    "line1": null,
 | 
			
		||||
                    "line2": null,
 | 
			
		||||
                    "postal_code": null,
 | 
			
		||||
                    "state": null
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {
 | 
			
		||||
            "realm_id": "1",
 | 
			
		||||
            "realm_str": "zulip"
 | 
			
		||||
          },
 | 
			
		||||
                  "email": null,
 | 
			
		||||
          "name": null,
 | 
			
		||||
                  "phone": null
 | 
			
		||||
                },
 | 
			
		||||
                "calculated_statement_descriptor": "ZULIP CLOUD STANDARD",
 | 
			
		||||
                "captured": true,
 | 
			
		||||
                "created": 1000000000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "customer": "cus_NORMALIZED0001",
 | 
			
		||||
                "description": "Upgrade to Zulip Cloud Standard, $60.0 x 6",
 | 
			
		||||
                "destination": null,
 | 
			
		||||
                "dispute": null,
 | 
			
		||||
                "disputed": false,
 | 
			
		||||
                "failure_balance_transaction": null,
 | 
			
		||||
                "failure_code": null,
 | 
			
		||||
                "failure_message": null,
 | 
			
		||||
                "fraud_details": {},
 | 
			
		||||
                "id": "ch_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice": null,
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {
 | 
			
		||||
                  "billing_modality": "charge_automatically",
 | 
			
		||||
                  "billing_schedule": "1",
 | 
			
		||||
                  "license_management": "automatic",
 | 
			
		||||
                  "licenses": "6",
 | 
			
		||||
                  "plan_tier": "1",
 | 
			
		||||
                  "price_per_license": "6000",
 | 
			
		||||
                  "realm_id": "1",
 | 
			
		||||
                  "realm_str": "zulip",
 | 
			
		||||
                  "seat_count": "6",
 | 
			
		||||
                  "type": "upgrade",
 | 
			
		||||
                  "user_email": "hamlet@zulip.com",
 | 
			
		||||
                  "user_id": "10"
 | 
			
		||||
                },
 | 
			
		||||
                "object": "charge",
 | 
			
		||||
                "on_behalf_of": null,
 | 
			
		||||
                "order": null,
 | 
			
		||||
                "outcome": {
 | 
			
		||||
                  "network_status": "approved_by_network",
 | 
			
		||||
                  "reason": null,
 | 
			
		||||
                  "risk_level": "normal",
 | 
			
		||||
                  "risk_score": 0,
 | 
			
		||||
                  "seller_message": "Payment complete.",
 | 
			
		||||
                  "type": "authorized"
 | 
			
		||||
                },
 | 
			
		||||
                "paid": true,
 | 
			
		||||
                "payment_intent": "pi_NORMALIZED00000000000002",
 | 
			
		||||
                "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
                "payment_method_details": {
 | 
			
		||||
                  "card": {
 | 
			
		||||
                    "amount_authorized": 36000,
 | 
			
		||||
                    "brand": "visa",
 | 
			
		||||
                    "checks": {
 | 
			
		||||
                      "address_line1_check": null,
 | 
			
		||||
                      "address_postal_code_check": null,
 | 
			
		||||
                      "cvc_check": "pass"
 | 
			
		||||
                    },
 | 
			
		||||
                    "country": "US",
 | 
			
		||||
                    "exp_month": 12,
 | 
			
		||||
                    "exp_year": 2024,
 | 
			
		||||
                    "extended_authorization": {
 | 
			
		||||
                      "status": "disabled"
 | 
			
		||||
                    },
 | 
			
		||||
                    "fingerprint": "NORMALIZED000001",
 | 
			
		||||
                    "funding": "credit",
 | 
			
		||||
                    "incremental_authorization": {
 | 
			
		||||
                      "status": "unavailable"
 | 
			
		||||
                    },
 | 
			
		||||
                    "installments": null,
 | 
			
		||||
                    "last4": "4242",
 | 
			
		||||
                    "mandate": null,
 | 
			
		||||
                    "multicapture": {
 | 
			
		||||
                      "status": "unavailable"
 | 
			
		||||
                    },
 | 
			
		||||
                    "network": "visa",
 | 
			
		||||
                    "network_token": {
 | 
			
		||||
                      "used": false
 | 
			
		||||
                    },
 | 
			
		||||
                    "overcapture": {
 | 
			
		||||
                      "maximum_amount_capturable": 36000,
 | 
			
		||||
                      "status": "unavailable"
 | 
			
		||||
                    },
 | 
			
		||||
                    "three_d_secure": null,
 | 
			
		||||
                    "wallet": null
 | 
			
		||||
                  },
 | 
			
		||||
                  "type": "card"
 | 
			
		||||
                },
 | 
			
		||||
                "radar_options": {},
 | 
			
		||||
                "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
                "receipt_number": null,
 | 
			
		||||
                "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKJH9qqsGMgbQjtDZqQM6LBZPz4stEfKrXRPEFZYCyclDAo2Dez80I8lUHYTVeT16LQpU7Ou6wGCFugiR",
 | 
			
		||||
                "refunded": false,
 | 
			
		||||
                "refunds": {
 | 
			
		||||
                  "data": [],
 | 
			
		||||
                  "has_more": false,
 | 
			
		||||
                  "object": "list",
 | 
			
		||||
                  "total_count": 0,
 | 
			
		||||
                  "url": "/v1/charges/ch_NORMALIZED00000000000002/refunds"
 | 
			
		||||
                },
 | 
			
		||||
                "review": null,
 | 
			
		||||
          "next_invoice_sequence": 2,
 | 
			
		||||
          "object": "customer",
 | 
			
		||||
          "phone": null,
 | 
			
		||||
          "preferred_locales": [],
 | 
			
		||||
          "shipping": null,
 | 
			
		||||
                "source": null,
 | 
			
		||||
                "source_transfer": null,
 | 
			
		||||
                "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
                "statement_descriptor_suffix": null,
 | 
			
		||||
                "status": "succeeded",
 | 
			
		||||
                "transfer_data": null,
 | 
			
		||||
                "transfer_group": null
 | 
			
		||||
          "tax_exempt": "none",
 | 
			
		||||
          "test_clock": null
 | 
			
		||||
        },
 | 
			
		||||
        "previous_attributes": {
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "default_payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu"
 | 
			
		||||
          }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 1,
 | 
			
		||||
            "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000002"
 | 
			
		||||
          },
 | 
			
		||||
          "client_secret": "pi_NORMALIZED00000000000002_secret_6P4eLudA3uvQYCOoNiDTkNQEI",
 | 
			
		||||
          "confirmation_method": "automatic",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "description": "Upgrade to Zulip Cloud Standard, $60.0 x 6",
 | 
			
		||||
          "id": "pi_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "last_payment_error": null,
 | 
			
		||||
          "latest_charge": "ch_NORMALIZED00000000000002",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {
 | 
			
		||||
            "billing_modality": "charge_automatically",
 | 
			
		||||
            "billing_schedule": "1",
 | 
			
		||||
            "license_management": "automatic",
 | 
			
		||||
            "licenses": "6",
 | 
			
		||||
            "plan_tier": "1",
 | 
			
		||||
            "price_per_license": "6000",
 | 
			
		||||
            "realm_id": "1",
 | 
			
		||||
            "realm_str": "zulip",
 | 
			
		||||
            "seat_count": "6",
 | 
			
		||||
            "type": "upgrade",
 | 
			
		||||
            "user_email": "hamlet@zulip.com",
 | 
			
		||||
            "user_id": "10"
 | 
			
		||||
          },
 | 
			
		||||
          "next_action": null,
 | 
			
		||||
          "object": "payment_intent",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
          "payment_method_configuration_details": null,
 | 
			
		||||
          "payment_method_options": {
 | 
			
		||||
            "card": {
 | 
			
		||||
              "installments": null,
 | 
			
		||||
              "mandate_options": null,
 | 
			
		||||
              "network": null,
 | 
			
		||||
              "request_three_d_secure": "automatic"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
          "payment_method_types": [
 | 
			
		||||
            "card"
 | 
			
		||||
          ],
 | 
			
		||||
          "processing": null,
 | 
			
		||||
          "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
          "review": null,
 | 
			
		||||
          "setup_future_usage": null,
 | 
			
		||||
          "shipping": null,
 | 
			
		||||
          "source": null,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "statement_descriptor_suffix": null,
 | 
			
		||||
          "status": "succeeded",
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_3OIlciDEQaroqDjs14Vw2Reo",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0008",
 | 
			
		||||
        "idempotency_key": "f7ce8212-6677-40df-912b-4ac6c3765065"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "payment_intent.succeeded"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "amount": 36000,
 | 
			
		||||
          "amount_captured": 36000,
 | 
			
		||||
          "amount_refunded": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "balance_transaction": "txn_NORMALIZED00000000000002",
 | 
			
		||||
          "billing_details": {
 | 
			
		||||
            "address": {
 | 
			
		||||
              "city": null,
 | 
			
		||||
              "country": null,
 | 
			
		||||
              "line1": null,
 | 
			
		||||
              "line2": null,
 | 
			
		||||
              "postal_code": null,
 | 
			
		||||
              "state": null
 | 
			
		||||
            },
 | 
			
		||||
            "email": null,
 | 
			
		||||
            "name": null,
 | 
			
		||||
            "phone": null
 | 
			
		||||
          },
 | 
			
		||||
          "calculated_statement_descriptor": "ZULIP CLOUD STANDARD",
 | 
			
		||||
          "captured": true,
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "description": "Upgrade to Zulip Cloud Standard, $60.0 x 6",
 | 
			
		||||
          "destination": null,
 | 
			
		||||
          "dispute": null,
 | 
			
		||||
          "disputed": false,
 | 
			
		||||
          "failure_balance_transaction": null,
 | 
			
		||||
          "failure_code": null,
 | 
			
		||||
          "failure_message": null,
 | 
			
		||||
          "fraud_details": {},
 | 
			
		||||
          "id": "ch_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {
 | 
			
		||||
            "billing_modality": "charge_automatically",
 | 
			
		||||
            "billing_schedule": "1",
 | 
			
		||||
            "license_management": "automatic",
 | 
			
		||||
            "licenses": "6",
 | 
			
		||||
            "plan_tier": "1",
 | 
			
		||||
            "price_per_license": "6000",
 | 
			
		||||
            "realm_id": "1",
 | 
			
		||||
            "realm_str": "zulip",
 | 
			
		||||
            "seat_count": "6",
 | 
			
		||||
            "type": "upgrade",
 | 
			
		||||
            "user_email": "hamlet@zulip.com",
 | 
			
		||||
            "user_id": "10"
 | 
			
		||||
          },
 | 
			
		||||
          "object": "charge",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "order": null,
 | 
			
		||||
          "outcome": {
 | 
			
		||||
            "network_status": "approved_by_network",
 | 
			
		||||
            "reason": null,
 | 
			
		||||
            "risk_level": "normal",
 | 
			
		||||
            "risk_score": 0,
 | 
			
		||||
            "seller_message": "Payment complete.",
 | 
			
		||||
            "type": "authorized"
 | 
			
		||||
          },
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "payment_intent": "pi_NORMALIZED00000000000002",
 | 
			
		||||
          "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
          "payment_method_details": {
 | 
			
		||||
            "card": {
 | 
			
		||||
              "amount_authorized": 36000,
 | 
			
		||||
              "brand": "visa",
 | 
			
		||||
              "checks": {
 | 
			
		||||
                "address_line1_check": null,
 | 
			
		||||
                "address_postal_code_check": null,
 | 
			
		||||
                "cvc_check": "pass"
 | 
			
		||||
              },
 | 
			
		||||
              "country": "US",
 | 
			
		||||
              "exp_month": 12,
 | 
			
		||||
              "exp_year": 2024,
 | 
			
		||||
              "extended_authorization": {
 | 
			
		||||
                "status": "disabled"
 | 
			
		||||
              },
 | 
			
		||||
              "fingerprint": "NORMALIZED000001",
 | 
			
		||||
              "funding": "credit",
 | 
			
		||||
              "incremental_authorization": {
 | 
			
		||||
                "status": "unavailable"
 | 
			
		||||
              },
 | 
			
		||||
              "installments": null,
 | 
			
		||||
              "last4": "4242",
 | 
			
		||||
              "mandate": null,
 | 
			
		||||
              "multicapture": {
 | 
			
		||||
                "status": "unavailable"
 | 
			
		||||
              },
 | 
			
		||||
              "network": "visa",
 | 
			
		||||
              "network_token": {
 | 
			
		||||
                "used": false
 | 
			
		||||
              },
 | 
			
		||||
              "overcapture": {
 | 
			
		||||
                "maximum_amount_capturable": 36000,
 | 
			
		||||
                "status": "unavailable"
 | 
			
		||||
              },
 | 
			
		||||
              "three_d_secure": null,
 | 
			
		||||
              "wallet": null
 | 
			
		||||
            },
 | 
			
		||||
            "type": "card"
 | 
			
		||||
          },
 | 
			
		||||
          "radar_options": {},
 | 
			
		||||
          "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKJH9qqsGMgYqjd-cSvE6LBaZocBeNc1j6HmSljaGjK9coB5-xRAyLYhQxqOON0JTW8MYWAJtnxrRxAiL",
 | 
			
		||||
          "refunded": false,
 | 
			
		||||
          "refunds": {
 | 
			
		||||
            "data": [],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 0,
 | 
			
		||||
            "url": "/v1/charges/ch_NORMALIZED00000000000002/refunds"
 | 
			
		||||
          },
 | 
			
		||||
          "review": null,
 | 
			
		||||
          "shipping": null,
 | 
			
		||||
          "source": null,
 | 
			
		||||
          "source_transfer": null,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "statement_descriptor_suffix": null,
 | 
			
		||||
          "status": "succeeded",
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_3OIlciDEQaroqDjs1zZA7DlT",
 | 
			
		||||
      "id": "evt_1OOgyDDEQaroqDjsP8rSlbMA",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0008",
 | 
			
		||||
        "idempotency_key": "f7ce8212-6677-40df-912b-4ac6c3765065"
 | 
			
		||||
        "id": "req_NORMALIZED0011",
 | 
			
		||||
        "idempotency_key": "cbb9624c-2dc6-4b8a-a8d4-3588974b2eb9"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "charge.succeeded"
 | 
			
		||||
      "type": "customer.updated"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "has_more": true,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -5,814 +5,140 @@
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "amount": 36000,
 | 
			
		||||
          "amount_captured": 36000,
 | 
			
		||||
          "amount_refunded": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          "balance_transaction": "txn_NORMALIZED00000000000002",
 | 
			
		||||
          "billing_details": {
 | 
			
		||||
            "address": {
 | 
			
		||||
              "city": null,
 | 
			
		||||
              "country": null,
 | 
			
		||||
              "line1": null,
 | 
			
		||||
              "line2": null,
 | 
			
		||||
              "postal_code": null,
 | 
			
		||||
              "state": null
 | 
			
		||||
            },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
            "email": null,
 | 
			
		||||
            "name": null,
 | 
			
		||||
            "phone": null
 | 
			
		||||
          },
 | 
			
		||||
          "calculated_statement_descriptor": "ZULIP CLOUD STANDARD",
 | 
			
		||||
          "captured": true,
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0003",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlclDEQaroqDjslxJqiQFY",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0009",
 | 
			
		||||
        "idempotency_key": "5fb5bcd9-f037-402f-b67a-6f8eb89f3c11"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.finalized"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0003",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        },
 | 
			
		||||
        "previous_attributes": {
 | 
			
		||||
          "attempted": false,
 | 
			
		||||
          "auto_advance": true,
 | 
			
		||||
          "effective_at": null,
 | 
			
		||||
          "ending_balance": null,
 | 
			
		||||
          "hosted_invoice_url": null,
 | 
			
		||||
          "invoice_pdf": null,
 | 
			
		||||
          "next_payment_attempt": 1000000000,
 | 
			
		||||
          "number": null,
 | 
			
		||||
          "paid": false,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "auto"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "status": "draft",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": null,
 | 
			
		||||
            "paid_at": null
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlclDEQaroqDjsbyHu8WF8",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 1,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0009",
 | 
			
		||||
        "idempotency_key": "5fb5bcd9-f037-402f-b67a-6f8eb89f3c11"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.updated"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": false,
 | 
			
		||||
          "auto_advance": true,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": null,
 | 
			
		||||
          "ending_balance": null,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": null,
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": null,
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": 1000000000,
 | 
			
		||||
          "number": null,
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": false,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "auto"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "draft",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": null,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": null,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlckDEQaroqDjsUsuf3ZOp",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0010",
 | 
			
		||||
        "idempotency_key": "a4d2ad76-c98a-446a-8236-ec43f0faf5fa"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.created"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "amount": 36000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "date": 1000000000,
 | 
			
		||||
          "description": "Zulip Cloud Standard",
 | 
			
		||||
          "discountable": false,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000003",
 | 
			
		||||
          "description": "Upgrade to Zulip Cloud Standard, $60.0 x 6",
 | 
			
		||||
          "destination": null,
 | 
			
		||||
          "dispute": null,
 | 
			
		||||
          "disputed": false,
 | 
			
		||||
          "failure_balance_transaction": null,
 | 
			
		||||
          "failure_code": null,
 | 
			
		||||
          "failure_message": null,
 | 
			
		||||
          "fraud_details": {},
 | 
			
		||||
          "id": "ch_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "object": "invoiceitem",
 | 
			
		||||
          "period": {
 | 
			
		||||
            "end": 1357095845,
 | 
			
		||||
            "start": 1325473445
 | 
			
		||||
          "metadata": {
 | 
			
		||||
            "billing_modality": "charge_automatically",
 | 
			
		||||
            "billing_schedule": "1",
 | 
			
		||||
            "license_management": "automatic",
 | 
			
		||||
            "licenses": "6",
 | 
			
		||||
            "plan_tier": "1",
 | 
			
		||||
            "price_per_license": "6000",
 | 
			
		||||
            "realm_id": "1",
 | 
			
		||||
            "realm_str": "zulip",
 | 
			
		||||
            "seat_count": "6",
 | 
			
		||||
            "type": "upgrade",
 | 
			
		||||
            "user_email": "hamlet@zulip.com",
 | 
			
		||||
            "user_id": "10"
 | 
			
		||||
          },
 | 
			
		||||
          "plan": null,
 | 
			
		||||
          "price": {
 | 
			
		||||
            "active": false,
 | 
			
		||||
            "billing_scheme": "per_unit",
 | 
			
		||||
            "created": 1000000000,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "custom_unit_amount": null,
 | 
			
		||||
            "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "lookup_key": null,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "nickname": null,
 | 
			
		||||
            "object": "price",
 | 
			
		||||
            "product": "prod_NORMALIZED0001",
 | 
			
		||||
            "recurring": null,
 | 
			
		||||
            "tax_behavior": "unspecified",
 | 
			
		||||
            "tiers_mode": null,
 | 
			
		||||
            "transform_quantity": null,
 | 
			
		||||
            "type": "one_time",
 | 
			
		||||
            "unit_amount": 6000,
 | 
			
		||||
            "unit_amount_decimal": "6000"
 | 
			
		||||
          "object": "charge",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "order": null,
 | 
			
		||||
          "outcome": {
 | 
			
		||||
            "network_status": "approved_by_network",
 | 
			
		||||
            "reason": null,
 | 
			
		||||
            "risk_level": "normal",
 | 
			
		||||
            "risk_score": 0,
 | 
			
		||||
            "seller_message": "Payment complete.",
 | 
			
		||||
            "type": "authorized"
 | 
			
		||||
          },
 | 
			
		||||
          "proration": false,
 | 
			
		||||
          "quantity": 6,
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "tax_rates": [],
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "unit_amount": 6000,
 | 
			
		||||
          "unit_amount_decimal": "6000"
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "payment_intent": "pi_NORMALIZED00000000000002",
 | 
			
		||||
          "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
          "payment_method_details": {
 | 
			
		||||
            "card": {
 | 
			
		||||
              "amount_authorized": 36000,
 | 
			
		||||
              "brand": "visa",
 | 
			
		||||
              "checks": {
 | 
			
		||||
                "address_line1_check": null,
 | 
			
		||||
                "address_postal_code_check": null,
 | 
			
		||||
                "cvc_check": "pass"
 | 
			
		||||
              },
 | 
			
		||||
              "country": "US",
 | 
			
		||||
              "exp_month": 12,
 | 
			
		||||
              "exp_year": 2024,
 | 
			
		||||
              "extended_authorization": {
 | 
			
		||||
                "status": "disabled"
 | 
			
		||||
              },
 | 
			
		||||
              "fingerprint": "NORMALIZED000001",
 | 
			
		||||
              "funding": "credit",
 | 
			
		||||
              "incremental_authorization": {
 | 
			
		||||
                "status": "unavailable"
 | 
			
		||||
              },
 | 
			
		||||
              "installments": null,
 | 
			
		||||
              "last4": "4242",
 | 
			
		||||
              "mandate": null,
 | 
			
		||||
              "multicapture": {
 | 
			
		||||
                "status": "unavailable"
 | 
			
		||||
              },
 | 
			
		||||
              "network": "visa",
 | 
			
		||||
              "network_token": {
 | 
			
		||||
                "used": false
 | 
			
		||||
              },
 | 
			
		||||
              "overcapture": {
 | 
			
		||||
                "maximum_amount_capturable": 36000,
 | 
			
		||||
                "status": "unavailable"
 | 
			
		||||
              },
 | 
			
		||||
              "three_d_secure": null,
 | 
			
		||||
              "wallet": null
 | 
			
		||||
            },
 | 
			
		||||
            "type": "card"
 | 
			
		||||
          },
 | 
			
		||||
          "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKISVgawGMgZYCKigyKU6LBb1QG597ZNjUnccddW2jtacArLs56xOyqwxP2bM8hVTwa2z41Oj5xnS1PR3",
 | 
			
		||||
          "refunded": false,
 | 
			
		||||
          "refunds": {
 | 
			
		||||
            "data": [],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 0,
 | 
			
		||||
            "url": "/v1/charges/ch_NORMALIZED00000000000002/refunds"
 | 
			
		||||
          },
 | 
			
		||||
          "review": null,
 | 
			
		||||
          "shipping": null,
 | 
			
		||||
          "source": null,
 | 
			
		||||
          "source_transfer": null,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "statement_descriptor_suffix": null,
 | 
			
		||||
          "status": "succeeded",
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlckDEQaroqDjsYzRhmX8V",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0011",
 | 
			
		||||
        "idempotency_key": "0c11698d-33dd-4270-81bd-05e97ff35e0e"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "amount": -36000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "date": 1000000000,
 | 
			
		||||
          "description": "Payment (Card ending in 4242)",
 | 
			
		||||
          "discountable": false,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "id": "ii_NORMALIZED00000000000004",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "object": "invoiceitem",
 | 
			
		||||
          "period": {
 | 
			
		||||
            "end": 1000000000,
 | 
			
		||||
            "start": 1000000000
 | 
			
		||||
          },
 | 
			
		||||
          "plan": null,
 | 
			
		||||
          "price": {
 | 
			
		||||
            "active": false,
 | 
			
		||||
            "billing_scheme": "per_unit",
 | 
			
		||||
            "created": 1000000000,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "custom_unit_amount": null,
 | 
			
		||||
            "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "lookup_key": null,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "nickname": null,
 | 
			
		||||
            "object": "price",
 | 
			
		||||
            "product": "prod_NORMALIZED0002",
 | 
			
		||||
            "recurring": null,
 | 
			
		||||
            "tax_behavior": "unspecified",
 | 
			
		||||
            "tiers_mode": null,
 | 
			
		||||
            "transform_quantity": null,
 | 
			
		||||
            "type": "one_time",
 | 
			
		||||
            "unit_amount": -36000,
 | 
			
		||||
            "unit_amount_decimal": "-36000"
 | 
			
		||||
          },
 | 
			
		||||
          "proration": false,
 | 
			
		||||
          "quantity": 1,
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "tax_rates": [],
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "unit_amount": -36000,
 | 
			
		||||
          "unit_amount_decimal": "-36000"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlcjDEQaroqDjsWfKiiWQ1",
 | 
			
		||||
      "id": "evt_3OOgyFDEQaroqDjs0xUUv3IO",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0012",
 | 
			
		||||
        "idempotency_key": "e0683c69-8080-4a6a-b9e7-7750eba12988"
 | 
			
		||||
        "idempotency_key": "71041855-a9e8-481e-90f1-7b0df298703c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
      "type": "charge.succeeded"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
 
 | 
			
		||||
@@ -5,446 +5,214 @@
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "amount": 36000,
 | 
			
		||||
          "amount_capturable": 0,
 | 
			
		||||
          "amount_details": {
 | 
			
		||||
            "tip": {}
 | 
			
		||||
          },
 | 
			
		||||
          "amount_received": 36000,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
          "automatic_payment_methods": null,
 | 
			
		||||
          "canceled_at": null,
 | 
			
		||||
          "cancellation_reason": null,
 | 
			
		||||
          "capture_method": "automatic",
 | 
			
		||||
          "charges": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                "amount_captured": 36000,
 | 
			
		||||
                "amount_refunded": 0,
 | 
			
		||||
                "application": null,
 | 
			
		||||
                "application_fee": null,
 | 
			
		||||
                "application_fee_amount": null,
 | 
			
		||||
                "balance_transaction": "txn_NORMALIZED00000000000002",
 | 
			
		||||
                "billing_details": {
 | 
			
		||||
                  "address": {
 | 
			
		||||
                    "city": null,
 | 
			
		||||
                    "country": null,
 | 
			
		||||
                    "line1": null,
 | 
			
		||||
                    "line2": null,
 | 
			
		||||
                    "postal_code": null,
 | 
			
		||||
                    "state": null
 | 
			
		||||
                  },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "email": null,
 | 
			
		||||
                  "name": null,
 | 
			
		||||
                  "phone": null
 | 
			
		||||
                },
 | 
			
		||||
                "calculated_statement_descriptor": "ZULIP CLOUD STANDARD",
 | 
			
		||||
                "captured": true,
 | 
			
		||||
                "created": 1000000000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                "customer": "cus_NORMALIZED0001",
 | 
			
		||||
                "description": "Upgrade to Zulip Cloud Standard, $60.0 x 6",
 | 
			
		||||
                "destination": null,
 | 
			
		||||
                "dispute": null,
 | 
			
		||||
                "disputed": false,
 | 
			
		||||
                "failure_balance_transaction": null,
 | 
			
		||||
                "failure_code": null,
 | 
			
		||||
                "failure_message": null,
 | 
			
		||||
                "fraud_details": {},
 | 
			
		||||
                "id": "ch_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice": null,
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                "metadata": {
 | 
			
		||||
                  "billing_modality": "charge_automatically",
 | 
			
		||||
                  "billing_schedule": "1",
 | 
			
		||||
                  "license_management": "automatic",
 | 
			
		||||
                  "licenses": "6",
 | 
			
		||||
                  "plan_tier": "1",
 | 
			
		||||
                  "price_per_license": "6000",
 | 
			
		||||
                  "realm_id": "1",
 | 
			
		||||
                  "realm_str": "zulip",
 | 
			
		||||
                  "seat_count": "6",
 | 
			
		||||
                  "type": "upgrade",
 | 
			
		||||
                  "user_email": "hamlet@zulip.com",
 | 
			
		||||
                  "user_id": "10"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                "object": "charge",
 | 
			
		||||
                "on_behalf_of": null,
 | 
			
		||||
                "order": null,
 | 
			
		||||
                "outcome": {
 | 
			
		||||
                  "network_status": "approved_by_network",
 | 
			
		||||
                  "reason": null,
 | 
			
		||||
                  "risk_level": "normal",
 | 
			
		||||
                  "risk_score": 0,
 | 
			
		||||
                  "seller_message": "Payment complete.",
 | 
			
		||||
                  "type": "authorized"
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
                "paid": true,
 | 
			
		||||
                "payment_intent": "pi_NORMALIZED00000000000002",
 | 
			
		||||
                "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
                "payment_method_details": {
 | 
			
		||||
                  "card": {
 | 
			
		||||
                    "amount_authorized": 36000,
 | 
			
		||||
                    "brand": "visa",
 | 
			
		||||
                    "checks": {
 | 
			
		||||
                      "address_line1_check": null,
 | 
			
		||||
                      "address_postal_code_check": null,
 | 
			
		||||
                      "cvc_check": "pass"
 | 
			
		||||
                    },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                    "country": "US",
 | 
			
		||||
                    "exp_month": 12,
 | 
			
		||||
                    "exp_year": 2024,
 | 
			
		||||
                    "extended_authorization": {
 | 
			
		||||
                      "status": "disabled"
 | 
			
		||||
                    },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                    "fingerprint": "NORMALIZED000001",
 | 
			
		||||
                    "funding": "credit",
 | 
			
		||||
                    "incremental_authorization": {
 | 
			
		||||
                      "status": "unavailable"
 | 
			
		||||
                    },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                    "installments": null,
 | 
			
		||||
                    "last4": "4242",
 | 
			
		||||
                    "mandate": null,
 | 
			
		||||
                    "multicapture": {
 | 
			
		||||
                      "status": "unavailable"
 | 
			
		||||
                    },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
                    "network": "visa",
 | 
			
		||||
                    "network_token": {
 | 
			
		||||
                      "used": false
 | 
			
		||||
                    },
 | 
			
		||||
                    "overcapture": {
 | 
			
		||||
                      "maximum_amount_capturable": 36000,
 | 
			
		||||
                      "status": "unavailable"
 | 
			
		||||
                    },
 | 
			
		||||
                    "three_d_secure": null,
 | 
			
		||||
                    "wallet": null
 | 
			
		||||
                  },
 | 
			
		||||
                  "type": "card"
 | 
			
		||||
                },
 | 
			
		||||
                "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
                "receipt_number": null,
 | 
			
		||||
                "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKISVgawGMgZlwlrq6Pw6LBYD-6PFGs447rNWh64CCrBKZu-35l8mraLA5OE4cizEjPr70V8lUkHClZ8N",
 | 
			
		||||
                "refunded": false,
 | 
			
		||||
                "refunds": {
 | 
			
		||||
                  "data": [],
 | 
			
		||||
                  "has_more": false,
 | 
			
		||||
                  "object": "list",
 | 
			
		||||
                  "total_count": 0,
 | 
			
		||||
                  "url": "/v1/charges/ch_NORMALIZED00000000000002/refunds"
 | 
			
		||||
                },
 | 
			
		||||
                "review": null,
 | 
			
		||||
                "shipping": null,
 | 
			
		||||
                "source": null,
 | 
			
		||||
                "source_transfer": null,
 | 
			
		||||
                "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
                "statement_descriptor_suffix": null,
 | 
			
		||||
                "status": "succeeded",
 | 
			
		||||
                "transfer_data": null,
 | 
			
		||||
                "transfer_group": null
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
            "total_count": 1,
 | 
			
		||||
            "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000002"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0003",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlclDEQaroqDjsYQluU75w",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0009",
 | 
			
		||||
        "idempotency_key": "5fb5bcd9-f037-402f-b67a-6f8eb89f3c11"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.payment_succeeded"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "client_secret": "pi_NORMALIZED00000000000002_secret_Tb23gtiSKnem3znKNFGt7WFLI",
 | 
			
		||||
          "confirmation_method": "automatic",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "hamlet@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 36000,
 | 
			
		||||
                "amount_excluding_tax": 36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
          "description": "Upgrade to Zulip Cloud Standard, $60.0 x 6",
 | 
			
		||||
          "id": "pi_NORMALIZED00000000000002",
 | 
			
		||||
          "invoice": null,
 | 
			
		||||
          "last_payment_error": null,
 | 
			
		||||
          "latest_charge": "ch_NORMALIZED00000000000002",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
          "metadata": {
 | 
			
		||||
            "billing_modality": "charge_automatically",
 | 
			
		||||
            "billing_schedule": "1",
 | 
			
		||||
            "license_management": "automatic",
 | 
			
		||||
            "licenses": "6",
 | 
			
		||||
            "plan_tier": "1",
 | 
			
		||||
            "price_per_license": "6000",
 | 
			
		||||
            "realm_id": "1",
 | 
			
		||||
            "realm_str": "zulip",
 | 
			
		||||
            "seat_count": "6",
 | 
			
		||||
            "type": "upgrade",
 | 
			
		||||
            "user_email": "hamlet@zulip.com",
 | 
			
		||||
            "user_id": "10"
 | 
			
		||||
          },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 6000,
 | 
			
		||||
                  "unit_amount_decimal": "6000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "6000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -36000,
 | 
			
		||||
                "amount_excluding_tax": -36000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -36000,
 | 
			
		||||
                  "unit_amount_decimal": "-36000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0003",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "next_action": null,
 | 
			
		||||
          "object": "payment_intent",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
          "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
          "payment_method_configuration_details": null,
 | 
			
		||||
          "payment_method_options": {
 | 
			
		||||
            "card": {
 | 
			
		||||
              "installments": null,
 | 
			
		||||
              "mandate_options": null,
 | 
			
		||||
              "network": null,
 | 
			
		||||
              "request_three_d_secure": "automatic"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "payment_method_types": [
 | 
			
		||||
            "card"
 | 
			
		||||
          ],
 | 
			
		||||
          "processing": null,
 | 
			
		||||
          "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
          "review": null,
 | 
			
		||||
          "setup_future_usage": null,
 | 
			
		||||
          "shipping": null,
 | 
			
		||||
          "source": null,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "statement_descriptor_suffix": null,
 | 
			
		||||
          "status": "succeeded",
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlclDEQaroqDjsWkTK3kjn",
 | 
			
		||||
      "id": "evt_3OOgyFDEQaroqDjs0GZJkjlq",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "pending_webhooks": 1,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0009",
 | 
			
		||||
        "idempotency_key": "5fb5bcd9-f037-402f-b67a-6f8eb89f3c11"
 | 
			
		||||
        "id": "req_NORMALIZED0012",
 | 
			
		||||
        "idempotency_key": "71041855-a9e8-481e-90f1-7b0df298703c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.paid"
 | 
			
		||||
      "type": "payment_intent.succeeded"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
 
 | 
			
		||||
@@ -41,7 +41,7 @@
 | 
			
		||||
  "footer": null,
 | 
			
		||||
  "from_invoice": null,
 | 
			
		||||
  "hosted_invoice_url": null,
 | 
			
		||||
  "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
  "invoice_pdf": null,
 | 
			
		||||
  "last_finalization_error": null,
 | 
			
		||||
  "latest_revision": null,
 | 
			
		||||
@@ -55,8 +55,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -71,7 +71,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -105,8 +105,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -121,7 +121,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -151,7 +151,7 @@
 | 
			
		||||
    "has_more": false,
 | 
			
		||||
    "object": "list",
 | 
			
		||||
    "total_count": 2,
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
  },
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
 
 | 
			
		||||
@@ -41,7 +41,7 @@
 | 
			
		||||
  "footer": null,
 | 
			
		||||
  "from_invoice": null,
 | 
			
		||||
  "hosted_invoice_url": null,
 | 
			
		||||
  "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
  "invoice_pdf": null,
 | 
			
		||||
  "last_finalization_error": null,
 | 
			
		||||
  "latest_revision": null,
 | 
			
		||||
@@ -55,8 +55,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -71,7 +71,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -105,8 +105,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -121,7 +121,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -151,7 +151,7 @@
 | 
			
		||||
    "has_more": false,
 | 
			
		||||
    "object": "list",
 | 
			
		||||
    "total_count": 2,
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
  },
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
 
 | 
			
		||||
@@ -40,9 +40,9 @@
 | 
			
		||||
  "ending_balance": 0,
 | 
			
		||||
  "footer": null,
 | 
			
		||||
  "from_invoice": null,
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo?s=ap",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjA502000hPybKLo/pdf?s=ap",
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN?s=ap",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjky0200JPjI2IZN/pdf?s=ap",
 | 
			
		||||
  "last_finalization_error": null,
 | 
			
		||||
  "latest_revision": null,
 | 
			
		||||
  "lines": {
 | 
			
		||||
@@ -55,8 +55,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -71,7 +71,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -105,8 +105,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -121,7 +121,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -151,12 +151,12 @@
 | 
			
		||||
    "has_more": false,
 | 
			
		||||
    "object": "list",
 | 
			
		||||
    "total_count": 2,
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
  },
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_payment_attempt": null,
 | 
			
		||||
  "number": "NORMALI-0002",
 | 
			
		||||
  "number": "NORMALI-0003",
 | 
			
		||||
  "object": "invoice",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "paid": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -40,9 +40,9 @@
 | 
			
		||||
  "ending_balance": 0,
 | 
			
		||||
  "footer": null,
 | 
			
		||||
  "from_invoice": null,
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol?s=ap",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjE502004xw8zwol/pdf?s=ap",
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAy0200CjUMxGPh?s=ap",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzAy0200CjUMxGPh/pdf?s=ap",
 | 
			
		||||
  "last_finalization_error": null,
 | 
			
		||||
  "latest_revision": null,
 | 
			
		||||
  "lines": {
 | 
			
		||||
@@ -55,8 +55,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -71,7 +71,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -105,8 +105,8 @@
 | 
			
		||||
        "discount_amounts": [],
 | 
			
		||||
        "discountable": false,
 | 
			
		||||
        "discounts": [],
 | 
			
		||||
        "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
        "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
        "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "line_item",
 | 
			
		||||
@@ -121,7 +121,7 @@
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_unit_amount": null,
 | 
			
		||||
          "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
          "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "lookup_key": null,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
@@ -151,12 +151,12 @@
 | 
			
		||||
    "has_more": false,
 | 
			
		||||
    "object": "list",
 | 
			
		||||
    "total_count": 2,
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
    "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
  },
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_payment_attempt": null,
 | 
			
		||||
  "number": "NORMALI-0003",
 | 
			
		||||
  "number": "NORMALI-0001",
 | 
			
		||||
  "object": "invoice",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "paid": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -40,9 +40,9 @@
 | 
			
		||||
  "ending_balance": 0,
 | 
			
		||||
  "footer": null,
 | 
			
		||||
  "from_invoice": null,
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpjd2l4VnY1aGVsY1Ztb3BRODN5dGRHbGhpNk02LDkyMDM1MjIy0200dqk7fzRz?s=ap",
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDVWdGdUVoTFpUQUxhUDVJaVBSN21hQ2gwTFlKLDkzNDQ3MzA20200h2tz3BhL?s=ap",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000003",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpjd2l4VnY1aGVsY1Ztb3BRODN5dGRHbGhpNk02LDkyMDM1MjIy0200dqk7fzRz/pdf?s=ap",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDVWdGdUVoTFpUQUxhUDVJaVBSN21hQ2gwTFlKLDkzNDQ3MzA20200h2tz3BhL/pdf?s=ap",
 | 
			
		||||
  "last_finalization_error": null,
 | 
			
		||||
  "latest_revision": null,
 | 
			
		||||
  "lines": {
 | 
			
		||||
 
 | 
			
		||||
@@ -42,9 +42,9 @@
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjEx0200eb8tuh13?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjEx0200eb8tuh13/pdf?s=ap",
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjk00200DFhM6982?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3Mjk00200DFhM6982/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
@@ -57,8 +57,8 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
            "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
@@ -73,7 +73,7 @@
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
              "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
@@ -107,8 +107,8 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
            "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
@@ -123,7 +123,7 @@
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
              "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
@@ -153,12 +153,12 @@
 | 
			
		||||
        "has_more": false,
 | 
			
		||||
        "object": "list",
 | 
			
		||||
        "total_count": 2,
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
      },
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "next_payment_attempt": null,
 | 
			
		||||
      "number": "NORMALI-0002",
 | 
			
		||||
      "number": "NORMALI-0003",
 | 
			
		||||
      "object": "invoice",
 | 
			
		||||
      "on_behalf_of": null,
 | 
			
		||||
      "paid": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -42,9 +42,9 @@
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjIx0200OMBLJkxA?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjIx0200OMBLJkxA/pdf?s=ap",
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzA10200jtOCa4pN?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzA10200jtOCa4pN/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
@@ -57,8 +57,8 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
            "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
@@ -73,7 +73,7 @@
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
              "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
@@ -107,6 +107,214 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
            "period": {
 | 
			
		||||
              "end": 1000000000,
 | 
			
		||||
              "start": 1000000000
 | 
			
		||||
            },
 | 
			
		||||
            "plan": null,
 | 
			
		||||
            "price": {
 | 
			
		||||
              "active": false,
 | 
			
		||||
              "billing_scheme": "per_unit",
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
              "nickname": null,
 | 
			
		||||
              "object": "price",
 | 
			
		||||
              "product": "prod_NORMALIZED0002",
 | 
			
		||||
              "recurring": null,
 | 
			
		||||
              "tax_behavior": "unspecified",
 | 
			
		||||
              "tiers_mode": null,
 | 
			
		||||
              "transform_quantity": null,
 | 
			
		||||
              "type": "one_time",
 | 
			
		||||
              "unit_amount": -36000,
 | 
			
		||||
              "unit_amount_decimal": "-36000"
 | 
			
		||||
            },
 | 
			
		||||
            "proration": false,
 | 
			
		||||
            "proration_details": {
 | 
			
		||||
              "credited_items": null
 | 
			
		||||
            },
 | 
			
		||||
            "quantity": 1,
 | 
			
		||||
            "subscription": null,
 | 
			
		||||
            "tax_amounts": [],
 | 
			
		||||
            "tax_rates": [],
 | 
			
		||||
            "type": "invoiceitem",
 | 
			
		||||
            "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
          }
 | 
			
		||||
        ],
 | 
			
		||||
        "has_more": false,
 | 
			
		||||
        "object": "list",
 | 
			
		||||
        "total_count": 2,
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
      },
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "next_payment_attempt": null,
 | 
			
		||||
      "number": "NORMALI-0001",
 | 
			
		||||
      "object": "invoice",
 | 
			
		||||
      "on_behalf_of": null,
 | 
			
		||||
      "paid": true,
 | 
			
		||||
      "paid_out_of_band": false,
 | 
			
		||||
      "payment_intent": null,
 | 
			
		||||
      "payment_settings": {
 | 
			
		||||
        "default_mandate": null,
 | 
			
		||||
        "payment_method_options": null,
 | 
			
		||||
        "payment_method_types": null
 | 
			
		||||
      },
 | 
			
		||||
      "period_end": 1000000000,
 | 
			
		||||
      "period_start": 1000000000,
 | 
			
		||||
      "post_payment_credit_notes_amount": 0,
 | 
			
		||||
      "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
      "quote": null,
 | 
			
		||||
      "receipt_number": null,
 | 
			
		||||
      "rendering": {
 | 
			
		||||
        "amount_tax_display": null,
 | 
			
		||||
        "pdf": {
 | 
			
		||||
          "page_size": "letter"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "rendering_options": null,
 | 
			
		||||
      "shipping_cost": null,
 | 
			
		||||
      "shipping_details": null,
 | 
			
		||||
      "starting_balance": 0,
 | 
			
		||||
      "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
      "status": "paid",
 | 
			
		||||
      "status_transitions": {
 | 
			
		||||
        "finalized_at": 1000000000,
 | 
			
		||||
        "marked_uncollectible_at": null,
 | 
			
		||||
        "paid_at": 1000000000,
 | 
			
		||||
        "voided_at": null
 | 
			
		||||
      },
 | 
			
		||||
      "subscription": null,
 | 
			
		||||
      "subscription_details": {
 | 
			
		||||
        "metadata": null
 | 
			
		||||
      },
 | 
			
		||||
      "subtotal": 0,
 | 
			
		||||
      "subtotal_excluding_tax": 0,
 | 
			
		||||
      "tax": null,
 | 
			
		||||
      "test_clock": null,
 | 
			
		||||
      "total": 0,
 | 
			
		||||
      "total_discount_amounts": [],
 | 
			
		||||
      "total_excluding_tax": 0,
 | 
			
		||||
      "total_tax_amounts": [],
 | 
			
		||||
      "transfer_data": null,
 | 
			
		||||
      "webhooks_delivered_at": 1000000000
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "account_country": "US",
 | 
			
		||||
      "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
      "account_tax_ids": null,
 | 
			
		||||
      "amount_due": 0,
 | 
			
		||||
      "amount_paid": 0,
 | 
			
		||||
      "amount_remaining": 0,
 | 
			
		||||
      "amount_shipping": 0,
 | 
			
		||||
      "application": null,
 | 
			
		||||
      "application_fee_amount": null,
 | 
			
		||||
      "attempt_count": 0,
 | 
			
		||||
      "attempted": true,
 | 
			
		||||
      "auto_advance": false,
 | 
			
		||||
      "automatic_tax": {
 | 
			
		||||
        "enabled": false,
 | 
			
		||||
        "status": null
 | 
			
		||||
      },
 | 
			
		||||
      "billing_reason": "manual",
 | 
			
		||||
      "charge": null,
 | 
			
		||||
      "collection_method": "charge_automatically",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "currency": "usd",
 | 
			
		||||
      "custom_fields": null,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "customer_address": null,
 | 
			
		||||
      "customer_email": "hamlet@zulip.com",
 | 
			
		||||
      "customer_name": null,
 | 
			
		||||
      "customer_phone": null,
 | 
			
		||||
      "customer_shipping": null,
 | 
			
		||||
      "customer_tax_exempt": "none",
 | 
			
		||||
      "customer_tax_ids": [],
 | 
			
		||||
      "default_payment_method": null,
 | 
			
		||||
      "default_source": null,
 | 
			
		||||
      "default_tax_rates": [],
 | 
			
		||||
      "description": null,
 | 
			
		||||
      "discount": null,
 | 
			
		||||
      "discounts": [],
 | 
			
		||||
      "due_date": null,
 | 
			
		||||
      "effective_at": 1000000000,
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3MzA10200tOUVjZN1?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3MzA10200tOUVjZN1/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
        "data": [
 | 
			
		||||
          {
 | 
			
		||||
            "amount": 7200,
 | 
			
		||||
            "amount_excluding_tax": 7200,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "description": "Zulip Cloud Standard",
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
            "period": {
 | 
			
		||||
              "end": 1357095845,
 | 
			
		||||
              "start": 1325473445
 | 
			
		||||
            },
 | 
			
		||||
            "plan": null,
 | 
			
		||||
            "price": {
 | 
			
		||||
              "active": false,
 | 
			
		||||
              "billing_scheme": "per_unit",
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
              "nickname": null,
 | 
			
		||||
              "object": "price",
 | 
			
		||||
              "product": "prod_NORMALIZED0001",
 | 
			
		||||
              "recurring": null,
 | 
			
		||||
              "tax_behavior": "unspecified",
 | 
			
		||||
              "tiers_mode": null,
 | 
			
		||||
              "transform_quantity": null,
 | 
			
		||||
              "type": "one_time",
 | 
			
		||||
              "unit_amount": 1200,
 | 
			
		||||
              "unit_amount_decimal": "1200"
 | 
			
		||||
            },
 | 
			
		||||
            "proration": false,
 | 
			
		||||
            "proration_details": {
 | 
			
		||||
              "credited_items": null
 | 
			
		||||
            },
 | 
			
		||||
            "quantity": 6,
 | 
			
		||||
            "subscription": null,
 | 
			
		||||
            "tax_amounts": [],
 | 
			
		||||
            "tax_rates": [],
 | 
			
		||||
            "type": "invoiceitem",
 | 
			
		||||
            "unit_amount_excluding_tax": "1200"
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            "amount": -7200,
 | 
			
		||||
            "amount_excluding_tax": -7200,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "description": "Payment (Card ending in 4242)",
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
@@ -135,8 +343,8 @@
 | 
			
		||||
              "tiers_mode": null,
 | 
			
		||||
              "transform_quantity": null,
 | 
			
		||||
              "type": "one_time",
 | 
			
		||||
              "unit_amount": -36000,
 | 
			
		||||
              "unit_amount_decimal": "-36000"
 | 
			
		||||
              "unit_amount": -7200,
 | 
			
		||||
              "unit_amount_decimal": "-7200"
 | 
			
		||||
            },
 | 
			
		||||
            "proration": false,
 | 
			
		||||
            "proration_details": {
 | 
			
		||||
@@ -147,7 +355,7 @@
 | 
			
		||||
            "tax_amounts": [],
 | 
			
		||||
            "tax_rates": [],
 | 
			
		||||
            "type": "invoiceitem",
 | 
			
		||||
            "unit_amount_excluding_tax": "-36000"
 | 
			
		||||
            "unit_amount_excluding_tax": "-7200"
 | 
			
		||||
          }
 | 
			
		||||
        ],
 | 
			
		||||
        "has_more": false,
 | 
			
		||||
@@ -207,214 +415,6 @@
 | 
			
		||||
      "total_tax_amounts": [],
 | 
			
		||||
      "transfer_data": null,
 | 
			
		||||
      "webhooks_delivered_at": 1000000000
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "account_country": "US",
 | 
			
		||||
      "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
      "account_tax_ids": null,
 | 
			
		||||
      "amount_due": 0,
 | 
			
		||||
      "amount_paid": 0,
 | 
			
		||||
      "amount_remaining": 0,
 | 
			
		||||
      "amount_shipping": 0,
 | 
			
		||||
      "application": null,
 | 
			
		||||
      "application_fee_amount": null,
 | 
			
		||||
      "attempt_count": 0,
 | 
			
		||||
      "attempted": true,
 | 
			
		||||
      "auto_advance": false,
 | 
			
		||||
      "automatic_tax": {
 | 
			
		||||
        "enabled": false,
 | 
			
		||||
        "status": null
 | 
			
		||||
      },
 | 
			
		||||
      "billing_reason": "manual",
 | 
			
		||||
      "charge": null,
 | 
			
		||||
      "collection_method": "charge_automatically",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "currency": "usd",
 | 
			
		||||
      "custom_fields": null,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "customer_address": null,
 | 
			
		||||
      "customer_email": "hamlet@zulip.com",
 | 
			
		||||
      "customer_name": null,
 | 
			
		||||
      "customer_phone": null,
 | 
			
		||||
      "customer_shipping": null,
 | 
			
		||||
      "customer_tax_exempt": "none",
 | 
			
		||||
      "customer_tax_ids": [],
 | 
			
		||||
      "default_payment_method": null,
 | 
			
		||||
      "default_source": null,
 | 
			
		||||
      "default_tax_rates": [],
 | 
			
		||||
      "description": null,
 | 
			
		||||
      "discount": null,
 | 
			
		||||
      "discounts": [],
 | 
			
		||||
      "due_date": null,
 | 
			
		||||
      "effective_at": 1000000000,
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjIx02006mE2ERoT?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjIx02006mE2ERoT/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
        "data": [
 | 
			
		||||
          {
 | 
			
		||||
            "amount": 7200,
 | 
			
		||||
            "amount_excluding_tax": 7200,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "description": "Zulip Cloud Standard",
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
            "period": {
 | 
			
		||||
              "end": 1357095845,
 | 
			
		||||
              "start": 1325473445
 | 
			
		||||
            },
 | 
			
		||||
            "plan": null,
 | 
			
		||||
            "price": {
 | 
			
		||||
              "active": false,
 | 
			
		||||
              "billing_scheme": "per_unit",
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
              "nickname": null,
 | 
			
		||||
              "object": "price",
 | 
			
		||||
              "product": "prod_NORMALIZED0001",
 | 
			
		||||
              "recurring": null,
 | 
			
		||||
              "tax_behavior": "unspecified",
 | 
			
		||||
              "tiers_mode": null,
 | 
			
		||||
              "transform_quantity": null,
 | 
			
		||||
              "type": "one_time",
 | 
			
		||||
              "unit_amount": 1200,
 | 
			
		||||
              "unit_amount_decimal": "1200"
 | 
			
		||||
            },
 | 
			
		||||
            "proration": false,
 | 
			
		||||
            "proration_details": {
 | 
			
		||||
              "credited_items": null
 | 
			
		||||
            },
 | 
			
		||||
            "quantity": 6,
 | 
			
		||||
            "subscription": null,
 | 
			
		||||
            "tax_amounts": [],
 | 
			
		||||
            "tax_rates": [],
 | 
			
		||||
            "type": "invoiceitem",
 | 
			
		||||
            "unit_amount_excluding_tax": "1200"
 | 
			
		||||
          },
 | 
			
		||||
          {
 | 
			
		||||
            "amount": -7200,
 | 
			
		||||
            "amount_excluding_tax": -7200,
 | 
			
		||||
            "currency": "usd",
 | 
			
		||||
            "description": "Payment (Card ending in 4242)",
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
            "period": {
 | 
			
		||||
              "end": 1000000000,
 | 
			
		||||
              "start": 1000000000
 | 
			
		||||
            },
 | 
			
		||||
            "plan": null,
 | 
			
		||||
            "price": {
 | 
			
		||||
              "active": false,
 | 
			
		||||
              "billing_scheme": "per_unit",
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
              "nickname": null,
 | 
			
		||||
              "object": "price",
 | 
			
		||||
              "product": "prod_NORMALIZED0002",
 | 
			
		||||
              "recurring": null,
 | 
			
		||||
              "tax_behavior": "unspecified",
 | 
			
		||||
              "tiers_mode": null,
 | 
			
		||||
              "transform_quantity": null,
 | 
			
		||||
              "type": "one_time",
 | 
			
		||||
              "unit_amount": -7200,
 | 
			
		||||
              "unit_amount_decimal": "-7200"
 | 
			
		||||
            },
 | 
			
		||||
            "proration": false,
 | 
			
		||||
            "proration_details": {
 | 
			
		||||
              "credited_items": null
 | 
			
		||||
            },
 | 
			
		||||
            "quantity": 1,
 | 
			
		||||
            "subscription": null,
 | 
			
		||||
            "tax_amounts": [],
 | 
			
		||||
            "tax_rates": [],
 | 
			
		||||
            "type": "invoiceitem",
 | 
			
		||||
            "unit_amount_excluding_tax": "-7200"
 | 
			
		||||
          }
 | 
			
		||||
        ],
 | 
			
		||||
        "has_more": false,
 | 
			
		||||
        "object": "list",
 | 
			
		||||
        "total_count": 2,
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
      },
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "next_payment_attempt": null,
 | 
			
		||||
      "number": "NORMALI-0002",
 | 
			
		||||
      "object": "invoice",
 | 
			
		||||
      "on_behalf_of": null,
 | 
			
		||||
      "paid": true,
 | 
			
		||||
      "paid_out_of_band": false,
 | 
			
		||||
      "payment_intent": null,
 | 
			
		||||
      "payment_settings": {
 | 
			
		||||
        "default_mandate": null,
 | 
			
		||||
        "payment_method_options": null,
 | 
			
		||||
        "payment_method_types": null
 | 
			
		||||
      },
 | 
			
		||||
      "period_end": 1000000000,
 | 
			
		||||
      "period_start": 1000000000,
 | 
			
		||||
      "post_payment_credit_notes_amount": 0,
 | 
			
		||||
      "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
      "quote": null,
 | 
			
		||||
      "receipt_number": null,
 | 
			
		||||
      "rendering": {
 | 
			
		||||
        "amount_tax_display": null,
 | 
			
		||||
        "pdf": {
 | 
			
		||||
          "page_size": "letter"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "rendering_options": null,
 | 
			
		||||
      "shipping_cost": null,
 | 
			
		||||
      "shipping_details": null,
 | 
			
		||||
      "starting_balance": 0,
 | 
			
		||||
      "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
      "status": "paid",
 | 
			
		||||
      "status_transitions": {
 | 
			
		||||
        "finalized_at": 1000000000,
 | 
			
		||||
        "marked_uncollectible_at": null,
 | 
			
		||||
        "paid_at": 1000000000,
 | 
			
		||||
        "voided_at": null
 | 
			
		||||
      },
 | 
			
		||||
      "subscription": null,
 | 
			
		||||
      "subscription_details": {
 | 
			
		||||
        "metadata": null
 | 
			
		||||
      },
 | 
			
		||||
      "subtotal": 0,
 | 
			
		||||
      "subtotal_excluding_tax": 0,
 | 
			
		||||
      "tax": null,
 | 
			
		||||
      "test_clock": null,
 | 
			
		||||
      "total": 0,
 | 
			
		||||
      "total_discount_amounts": [],
 | 
			
		||||
      "total_excluding_tax": 0,
 | 
			
		||||
      "total_tax_amounts": [],
 | 
			
		||||
      "transfer_data": null,
 | 
			
		||||
      "webhooks_delivered_at": 1000000000
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
 
 | 
			
		||||
@@ -42,9 +42,9 @@
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpjd2l4VnY1aGVsY1Ztb3BRODN5dGRHbGhpNk02LDkyMDM1MjIz02008PWTxXb7?s=ap",
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDVWdGdUVoTFpUQUxhUDVJaVBSN21hQ2gwTFlKLDkzNDQ3MzA30200hjPX3dtu?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000003",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpjd2l4VnY1aGVsY1Ztb3BRODN5dGRHbGhpNk02LDkyMDM1MjIz02008PWTxXb7/pdf?s=ap",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDVWdGdUVoTFpUQUxhUDVJaVBSN21hQ2gwTFlKLDkzNDQ3MzA30200hjPX3dtu/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
@@ -200,9 +200,9 @@
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjIz0200JbHnRP6C?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiZG84bnRuUUtrVXRnN0pvOEFlUkJqY0ZBZFhCLDkyMDM1MjIz0200JbHnRP6C/pdf?s=ap",
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzA302005CECdTxX?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDeGJVRUpyS25mY2ZrZDl6TkJtRDhDNlZTWDM3LDkzNDQ3MzA302005CECdTxX/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
@@ -215,8 +215,8 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
            "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
@@ -231,7 +231,7 @@
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
              "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
@@ -265,8 +265,8 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
            "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
@@ -281,7 +281,7 @@
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
              "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
@@ -311,12 +311,12 @@
 | 
			
		||||
        "has_more": false,
 | 
			
		||||
        "object": "list",
 | 
			
		||||
        "total_count": 2,
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
      },
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "next_payment_attempt": null,
 | 
			
		||||
      "number": "NORMALI-0003",
 | 
			
		||||
      "number": "NORMALI-0001",
 | 
			
		||||
      "object": "invoice",
 | 
			
		||||
      "on_behalf_of": null,
 | 
			
		||||
      "paid": true,
 | 
			
		||||
@@ -408,9 +408,9 @@
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjIz0200ykr4PqiR?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpiMHNFNHp4OGxtTUNIclNiWWdZa0NQNmpqMVRJLDkyMDM1MjIz0200ykr4PqiR/pdf?s=ap",
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3MzA30200NpMPeif6?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000002",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDdDRDY1bDNIbWFUNDJKbEd4eVRyTVVoNEQya2RaLDkzNDQ3MzA30200NpMPeif6/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
@@ -423,8 +423,8 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
            "id": "il_NORMALIZED00000000000003",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000003",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
@@ -439,7 +439,7 @@
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
              "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
@@ -473,8 +473,8 @@
 | 
			
		||||
            "discount_amounts": [],
 | 
			
		||||
            "discountable": false,
 | 
			
		||||
            "discounts": [],
 | 
			
		||||
            "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
            "id": "il_NORMALIZED00000000000004",
 | 
			
		||||
            "invoice_item": "ii_NORMALIZED00000000000004",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "line_item",
 | 
			
		||||
@@ -489,7 +489,7 @@
 | 
			
		||||
              "created": 1000000000,
 | 
			
		||||
              "currency": "usd",
 | 
			
		||||
              "custom_unit_amount": null,
 | 
			
		||||
              "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
              "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
              "livemode": false,
 | 
			
		||||
              "lookup_key": null,
 | 
			
		||||
              "metadata": {},
 | 
			
		||||
@@ -519,12 +519,12 @@
 | 
			
		||||
        "has_more": false,
 | 
			
		||||
        "object": "list",
 | 
			
		||||
        "total_count": 2,
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
        "url": "/v1/invoices/in_NORMALIZED00000000000002/lines"
 | 
			
		||||
      },
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "next_payment_attempt": null,
 | 
			
		||||
      "number": "NORMALI-0002",
 | 
			
		||||
      "number": "NORMALI-0003",
 | 
			
		||||
      "object": "invoice",
 | 
			
		||||
      "on_behalf_of": null,
 | 
			
		||||
      "paid": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  "description": "Payment (Card ending in 4242)",
 | 
			
		||||
  "discountable": false,
 | 
			
		||||
  "discounts": [],
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000002",
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000004",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
@@ -22,7 +22,7 @@
 | 
			
		||||
    "created": 1000000000,
 | 
			
		||||
    "currency": "usd",
 | 
			
		||||
    "custom_unit_amount": null,
 | 
			
		||||
    "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
    "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
    "livemode": false,
 | 
			
		||||
    "lookup_key": null,
 | 
			
		||||
    "metadata": {},
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  "description": "Zulip Cloud Standard",
 | 
			
		||||
  "discountable": false,
 | 
			
		||||
  "discounts": [],
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000001",
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000003",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
@@ -22,7 +22,7 @@
 | 
			
		||||
    "created": 1000000000,
 | 
			
		||||
    "currency": "usd",
 | 
			
		||||
    "custom_unit_amount": null,
 | 
			
		||||
    "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
    "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
    "livemode": false,
 | 
			
		||||
    "lookup_key": null,
 | 
			
		||||
    "metadata": {},
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  "description": "Payment (Card ending in 4242)",
 | 
			
		||||
  "discountable": false,
 | 
			
		||||
  "discounts": [],
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000004",
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000002",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
@@ -22,7 +22,7 @@
 | 
			
		||||
    "created": 1000000000,
 | 
			
		||||
    "currency": "usd",
 | 
			
		||||
    "custom_unit_amount": null,
 | 
			
		||||
    "id": "price_NORMALIZED00000000000004",
 | 
			
		||||
    "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
    "livemode": false,
 | 
			
		||||
    "lookup_key": null,
 | 
			
		||||
    "metadata": {},
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
  "description": "Zulip Cloud Standard",
 | 
			
		||||
  "discountable": false,
 | 
			
		||||
  "discounts": [],
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000003",
 | 
			
		||||
  "id": "ii_NORMALIZED00000000000001",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
@@ -22,7 +22,7 @@
 | 
			
		||||
    "created": 1000000000,
 | 
			
		||||
    "currency": "usd",
 | 
			
		||||
    "custom_unit_amount": null,
 | 
			
		||||
    "id": "price_NORMALIZED00000000000003",
 | 
			
		||||
    "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
    "livemode": false,
 | 
			
		||||
    "lookup_key": null,
 | 
			
		||||
    "metadata": {},
 | 
			
		||||
 
 | 
			
		||||
@@ -77,7 +77,7 @@
 | 
			
		||||
        },
 | 
			
		||||
        "paid": true,
 | 
			
		||||
        "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
        "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
        "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
        "payment_method_details": {
 | 
			
		||||
          "card": {
 | 
			
		||||
            "amount_authorized": 7200,
 | 
			
		||||
@@ -117,10 +117,9 @@
 | 
			
		||||
          },
 | 
			
		||||
          "type": "card"
 | 
			
		||||
        },
 | 
			
		||||
        "radar_options": {},
 | 
			
		||||
        "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
        "receipt_number": null,
 | 
			
		||||
        "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKIf9qqsGMgYln1CvRQg6LBas64aXppcCqDXm8lE0Sbd6BM7omStVTXKhathHXWOU3wC8kyUuXRRePlvZ",
 | 
			
		||||
        "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKPmUgawGMgZVgWqUFe06LBY-ljUKnsficto6QSdSAOo26stH64xtSjWgraoDdK3sLQzG8060GSBMv3St",
 | 
			
		||||
        "refunded": false,
 | 
			
		||||
        "refunds": {
 | 
			
		||||
          "data": [],
 | 
			
		||||
@@ -145,7 +144,7 @@
 | 
			
		||||
    "total_count": 1,
 | 
			
		||||
    "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000001"
 | 
			
		||||
  },
 | 
			
		||||
  "client_secret": "pi_NORMALIZED00000000000001_secret_TT71wq3meHmzTEd7mpZbqrDnP",
 | 
			
		||||
  "client_secret": "pi_NORMALIZED00000000000001_secret_nTi2uv53oaIydyDHv3mdyBMWm",
 | 
			
		||||
  "confirmation_method": "automatic",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "currency": "usd",
 | 
			
		||||
@@ -173,7 +172,7 @@
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "payment_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
  "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -77,7 +77,7 @@
 | 
			
		||||
        },
 | 
			
		||||
        "paid": true,
 | 
			
		||||
        "payment_intent": "pi_NORMALIZED00000000000002",
 | 
			
		||||
        "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
        "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
        "payment_method_details": {
 | 
			
		||||
          "card": {
 | 
			
		||||
            "amount_authorized": 36000,
 | 
			
		||||
@@ -117,10 +117,9 @@
 | 
			
		||||
          },
 | 
			
		||||
          "type": "card"
 | 
			
		||||
        },
 | 
			
		||||
        "radar_options": {},
 | 
			
		||||
        "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
        "receipt_number": null,
 | 
			
		||||
        "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKJD9qqsGMgahoOxs2tY6LBYE_7mVLMS2-_xQ_C_j9KSayaWsbJ6jjdpSQjsrQImBFFAZjT-6A-PbNsDv",
 | 
			
		||||
        "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKISVgawGMgZ5KyWgi0M6LBZ3ieII0P47A-ImZobi9eB1M9qlWwkYYp4M3hxa1NSNHHSJCJG_m1HsslKC",
 | 
			
		||||
        "refunded": false,
 | 
			
		||||
        "refunds": {
 | 
			
		||||
          "data": [],
 | 
			
		||||
@@ -145,7 +144,7 @@
 | 
			
		||||
    "total_count": 1,
 | 
			
		||||
    "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000002"
 | 
			
		||||
  },
 | 
			
		||||
  "client_secret": "pi_NORMALIZED00000000000002_secret_6P4eLudA3uvQYCOoNiDTkNQEI",
 | 
			
		||||
  "client_secret": "pi_NORMALIZED00000000000002_secret_Tb23gtiSKnem3znKNFGt7WFLI",
 | 
			
		||||
  "confirmation_method": "automatic",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "currency": "usd",
 | 
			
		||||
@@ -173,7 +172,7 @@
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "payment_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
  "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlcUDEQaroqDjsvk7SRRcH_secret_P6zbAgeO1YNtM2cmjYChSjYCWBsUOAB",
 | 
			
		||||
  "client_secret": "seti_1OOgy1DEQaroqDjssDw856Ad_secret_PD7CcOp6l1pVxxOkQj3fYHLUCHSlUwA",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlcUDEQaroqDjsvk7SRRcH",
 | 
			
		||||
  "id": "seti_1OOgy1DEQaroqDjssDw856Ad",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlcUDEQaroqDjsLAiOPmHx",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgy1DEQaroqDjs2ulQRAeR",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
  "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlceDEQaroqDjsF69R2WG0_secret_P6zbftiDh6C2B0Le8GK6ALVcHby9Gyu",
 | 
			
		||||
  "client_secret": "seti_1OOgyBDEQaroqDjskmZjWSgi_secret_PD7C7bOg1OkvVN8xzi9gqVW3x5mgvmV",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlceDEQaroqDjsF69R2WG0",
 | 
			
		||||
  "id": "seti_1OOgyBDEQaroqDjskmZjWSgi",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlceDEQaroqDjs1hVqql0s",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgyBDEQaroqDjsE7xZyZKV",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
  "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -4,12 +4,12 @@
 | 
			
		||||
      "application": null,
 | 
			
		||||
      "automatic_payment_methods": null,
 | 
			
		||||
      "cancellation_reason": null,
 | 
			
		||||
      "client_secret": "seti_1OIlcTDEQaroqDjs7K1pjsyq_secret_P6zb4X2b8va5VZDxRMR3CgIYMwreYzC",
 | 
			
		||||
      "client_secret": "seti_1OOgy0DEQaroqDjsaygfT6Vy_secret_PD7C3P02AkYIOjoStdmNTntrMbn3aaN",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "description": null,
 | 
			
		||||
      "flow_directions": null,
 | 
			
		||||
      "id": "seti_1OIlcTDEQaroqDjs7K1pjsyq",
 | 
			
		||||
      "id": "seti_1OOgy0DEQaroqDjsaygfT6Vy",
 | 
			
		||||
      "last_setup_error": null,
 | 
			
		||||
      "latest_attempt": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
 
 | 
			
		||||
@@ -4,12 +4,12 @@
 | 
			
		||||
      "application": null,
 | 
			
		||||
      "automatic_payment_methods": null,
 | 
			
		||||
      "cancellation_reason": null,
 | 
			
		||||
      "client_secret": "seti_1OIlcdDEQaroqDjsB4ugOdVp_secret_P6zbipSmx7qqSUGMRGqVxyYPXoN42bP",
 | 
			
		||||
      "client_secret": "seti_1OOgyADEQaroqDjsYNJYIMlj_secret_PD7CupmIMsKujWYrVeli26I8x0kKX5S",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "description": null,
 | 
			
		||||
      "flow_directions": null,
 | 
			
		||||
      "id": "seti_1OIlcdDEQaroqDjsB4ugOdVp",
 | 
			
		||||
      "id": "seti_1OOgyADEQaroqDjsYNJYIMlj",
 | 
			
		||||
      "last_setup_error": null,
 | 
			
		||||
      "latest_attempt": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlcUDEQaroqDjsvk7SRRcH_secret_P6zbAgeO1YNtM2cmjYChSjYCWBsUOAB",
 | 
			
		||||
  "client_secret": "seti_1OOgy1DEQaroqDjssDw856Ad_secret_PD7CcOp6l1pVxxOkQj3fYHLUCHSlUwA",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlcUDEQaroqDjsvk7SRRcH",
 | 
			
		||||
  "id": "seti_1OOgy1DEQaroqDjssDw856Ad",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlcUDEQaroqDjsLAiOPmHx",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgy1DEQaroqDjs2ulQRAeR",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlcUDEQaroqDjsqDT70KqK",
 | 
			
		||||
  "payment_method": "pm_1OOgy1DEQaroqDjsPovw7cfu",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlceDEQaroqDjsF69R2WG0_secret_P6zbftiDh6C2B0Le8GK6ALVcHby9Gyu",
 | 
			
		||||
  "client_secret": "seti_1OOgyBDEQaroqDjskmZjWSgi_secret_PD7C7bOg1OkvVN8xzi9gqVW3x5mgvmV",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlceDEQaroqDjsF69R2WG0",
 | 
			
		||||
  "id": "seti_1OOgyBDEQaroqDjskmZjWSgi",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlceDEQaroqDjs1hVqql0s",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgyBDEQaroqDjsE7xZyZKV",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlceDEQaroqDjshc2Y2l9b",
 | 
			
		||||
  "payment_method": "pm_1OOgyBDEQaroqDjsiBlkYqAv",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@
 | 
			
		||||
    "status": null
 | 
			
		||||
  },
 | 
			
		||||
  "billing_address_collection": null,
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
  "client_reference_id": null,
 | 
			
		||||
  "client_secret": null,
 | 
			
		||||
  "consent": null,
 | 
			
		||||
@@ -18,6 +18,7 @@
 | 
			
		||||
  "currency_conversion": null,
 | 
			
		||||
  "custom_fields": [],
 | 
			
		||||
  "custom_text": {
 | 
			
		||||
    "after_submit": null,
 | 
			
		||||
    "shipping_address": null,
 | 
			
		||||
    "submit": null,
 | 
			
		||||
    "terms_of_service_acceptance": null
 | 
			
		||||
@@ -34,7 +35,7 @@
 | 
			
		||||
  },
 | 
			
		||||
  "customer_email": null,
 | 
			
		||||
  "expires_at": 1000000000,
 | 
			
		||||
  "id": "cs_test_NORMALIZED02sb4yHaq28VHOZscOtqKWTLoGQJALldTi43GUE0P56ay9sU",
 | 
			
		||||
  "id": "cs_test_NORMALIZED02cYJi6xn8lOgZ8Jj4mC5UrDNp2p7sxI7jpsAc5dvHxVJqBz",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "invoice_creation": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
@@ -58,7 +59,7 @@
 | 
			
		||||
    "enabled": false
 | 
			
		||||
  },
 | 
			
		||||
  "recovered_from": null,
 | 
			
		||||
  "setup_intent": "seti_1OIlcTDEQaroqDjs7K1pjsyq",
 | 
			
		||||
  "setup_intent": "seti_1OOgy0DEQaroqDjsaygfT6Vy",
 | 
			
		||||
  "shipping": null,
 | 
			
		||||
  "shipping_address_collection": null,
 | 
			
		||||
  "shipping_options": [],
 | 
			
		||||
@@ -69,5 +70,5 @@
 | 
			
		||||
  "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
  "total_details": null,
 | 
			
		||||
  "ui_mode": "hosted",
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED02sb4yHaq28VHOZscOtqKWTLoGQJALldTi43GUE0P56ay9sU#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED02cYJi6xn8lOgZ8Jj4mC5UrDNp2p7sxI7jpsAc5dvHxVJqBz#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@
 | 
			
		||||
    "status": null
 | 
			
		||||
  },
 | 
			
		||||
  "billing_address_collection": null,
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
  "client_reference_id": null,
 | 
			
		||||
  "client_secret": null,
 | 
			
		||||
  "consent": null,
 | 
			
		||||
@@ -18,6 +18,7 @@
 | 
			
		||||
  "currency_conversion": null,
 | 
			
		||||
  "custom_fields": [],
 | 
			
		||||
  "custom_text": {
 | 
			
		||||
    "after_submit": null,
 | 
			
		||||
    "shipping_address": null,
 | 
			
		||||
    "submit": null,
 | 
			
		||||
    "terms_of_service_acceptance": null
 | 
			
		||||
@@ -34,7 +35,7 @@
 | 
			
		||||
  },
 | 
			
		||||
  "customer_email": null,
 | 
			
		||||
  "expires_at": 1000000000,
 | 
			
		||||
  "id": "cs_test_NORMALIZED03vZmJUBP0ybiRb1yrtpVKGaX0cm1V0nhnpM6e5pcI1y8CkG",
 | 
			
		||||
  "id": "cs_test_NORMALIZED030qkpilOW0Vckpy6jr3necbx8Hb0r0rAdeG15WZLJO8SoSU",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "invoice_creation": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
@@ -58,7 +59,7 @@
 | 
			
		||||
    "enabled": false
 | 
			
		||||
  },
 | 
			
		||||
  "recovered_from": null,
 | 
			
		||||
  "setup_intent": "seti_1OIlcdDEQaroqDjsB4ugOdVp",
 | 
			
		||||
  "setup_intent": "seti_1OOgyADEQaroqDjsYNJYIMlj",
 | 
			
		||||
  "shipping": null,
 | 
			
		||||
  "shipping_address_collection": null,
 | 
			
		||||
  "shipping_options": [],
 | 
			
		||||
@@ -69,5 +70,5 @@
 | 
			
		||||
  "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
  "total_details": null,
 | 
			
		||||
  "ui_mode": "hosted",
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED03vZmJUBP0ybiRb1yrtpVKGaX0cm1V0nhnpM6e5pcI1y8CkG#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED030qkpilOW0Vckpy6jr3necbx8Hb0r0rAdeG15WZLJO8SoSU#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -10,7 +10,7 @@
 | 
			
		||||
        "status": null
 | 
			
		||||
      },
 | 
			
		||||
      "billing_address_collection": null,
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
      "client_reference_id": null,
 | 
			
		||||
      "client_secret": null,
 | 
			
		||||
      "consent": null,
 | 
			
		||||
@@ -20,6 +20,7 @@
 | 
			
		||||
      "currency_conversion": null,
 | 
			
		||||
      "custom_fields": [],
 | 
			
		||||
      "custom_text": {
 | 
			
		||||
        "after_submit": null,
 | 
			
		||||
        "shipping_address": null,
 | 
			
		||||
        "submit": null,
 | 
			
		||||
        "terms_of_service_acceptance": null
 | 
			
		||||
@@ -36,7 +37,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "customer_email": null,
 | 
			
		||||
      "expires_at": 1000000000,
 | 
			
		||||
      "id": "cs_test_NORMALIZED02sb4yHaq28VHOZscOtqKWTLoGQJALldTi43GUE0P56ay9sU",
 | 
			
		||||
      "id": "cs_test_NORMALIZED02cYJi6xn8lOgZ8Jj4mC5UrDNp2p7sxI7jpsAc5dvHxVJqBz",
 | 
			
		||||
      "invoice": null,
 | 
			
		||||
      "invoice_creation": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
@@ -60,7 +61,7 @@
 | 
			
		||||
        "enabled": false
 | 
			
		||||
      },
 | 
			
		||||
      "recovered_from": null,
 | 
			
		||||
      "setup_intent": "seti_1OIlcTDEQaroqDjs7K1pjsyq",
 | 
			
		||||
      "setup_intent": "seti_1OOgy0DEQaroqDjsaygfT6Vy",
 | 
			
		||||
      "shipping": null,
 | 
			
		||||
      "shipping_address_collection": null,
 | 
			
		||||
      "shipping_options": [],
 | 
			
		||||
@@ -71,7 +72,7 @@
 | 
			
		||||
      "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
      "total_details": null,
 | 
			
		||||
      "ui_mode": "hosted",
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED02sb4yHaq28VHOZscOtqKWTLoGQJALldTi43GUE0P56ay9sU#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED02cYJi6xn8lOgZ8Jj4mC5UrDNp2p7sxI7jpsAc5dvHxVJqBz#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -10,7 +10,7 @@
 | 
			
		||||
        "status": null
 | 
			
		||||
      },
 | 
			
		||||
      "billing_address_collection": null,
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
      "client_reference_id": null,
 | 
			
		||||
      "client_secret": null,
 | 
			
		||||
      "consent": null,
 | 
			
		||||
@@ -20,6 +20,7 @@
 | 
			
		||||
      "currency_conversion": null,
 | 
			
		||||
      "custom_fields": [],
 | 
			
		||||
      "custom_text": {
 | 
			
		||||
        "after_submit": null,
 | 
			
		||||
        "shipping_address": null,
 | 
			
		||||
        "submit": null,
 | 
			
		||||
        "terms_of_service_acceptance": null
 | 
			
		||||
@@ -36,7 +37,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "customer_email": null,
 | 
			
		||||
      "expires_at": 1000000000,
 | 
			
		||||
      "id": "cs_test_NORMALIZED03vZmJUBP0ybiRb1yrtpVKGaX0cm1V0nhnpM6e5pcI1y8CkG",
 | 
			
		||||
      "id": "cs_test_NORMALIZED030qkpilOW0Vckpy6jr3necbx8Hb0r0rAdeG15WZLJO8SoSU",
 | 
			
		||||
      "invoice": null,
 | 
			
		||||
      "invoice_creation": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
@@ -60,7 +61,7 @@
 | 
			
		||||
        "enabled": false
 | 
			
		||||
      },
 | 
			
		||||
      "recovered_from": null,
 | 
			
		||||
      "setup_intent": "seti_1OIlcdDEQaroqDjsB4ugOdVp",
 | 
			
		||||
      "setup_intent": "seti_1OOgyADEQaroqDjsYNJYIMlj",
 | 
			
		||||
      "shipping": null,
 | 
			
		||||
      "shipping_address_collection": null,
 | 
			
		||||
      "shipping_options": [],
 | 
			
		||||
@@ -71,7 +72,7 @@
 | 
			
		||||
      "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
      "total_details": null,
 | 
			
		||||
      "ui_mode": "hosted",
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED03vZmJUBP0ybiRb1yrtpVKGaX0cm1V0nhnpM6e5pcI1y8CkG#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED030qkpilOW0Vckpy6jr3necbx8Hb0r0rAdeG15WZLJO8SoSU#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
    "default_payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
      "id": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
      "id": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
      "id": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
      "id": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
      "id": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
      "id": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -19,7 +19,7 @@
 | 
			
		||||
          "invoice_prefix": "NORMA01",
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "custom_fields": null,
 | 
			
		||||
            "default_payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
            "default_payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
            "footer": null,
 | 
			
		||||
            "rendering_options": null
 | 
			
		||||
          },
 | 
			
		||||
@@ -43,13 +43,13 @@
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXjDEQaroqDjsLhrUEUe3",
 | 
			
		||||
      "id": "evt_1OOgt8DEQaroqDjsi0Jq69AA",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0001",
 | 
			
		||||
        "idempotency_key": "12b7d34b-4958-462b-8fda-e2f6c17957bd"
 | 
			
		||||
        "idempotency_key": "c5a2725a-cd1d-48ed-a372-6ad0d81b2d97"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "customer.updated"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -83,7 +83,7 @@
 | 
			
		||||
                },
 | 
			
		||||
                "paid": true,
 | 
			
		||||
                "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
                "payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
                "payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
                "payment_method_details": {
 | 
			
		||||
                  "card": {
 | 
			
		||||
                    "amount_authorized": 48000,
 | 
			
		||||
@@ -126,7 +126,7 @@
 | 
			
		||||
                "radar_options": {},
 | 
			
		||||
                "receipt_email": "othello@zulip.com",
 | 
			
		||||
                "receipt_number": null,
 | 
			
		||||
                "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKN76qqsGMgYgrE0XQWw6LBau_ilRx6BPEf5zlgCHW2ojzwBSlxtCQxmlmII5DkhOSXuAsc1VGTmDFZd6",
 | 
			
		||||
                "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKMqSgawGMgYfzHHUbN46LBYHApNJ77ul_E3nC6cBfOPlVm9-9awtIB-YX65dXmLtHCVlZ_cy9jk5bGoa",
 | 
			
		||||
                "refunded": false,
 | 
			
		||||
                "refunds": {
 | 
			
		||||
                  "data": [],
 | 
			
		||||
@@ -151,7 +151,7 @@
 | 
			
		||||
            "total_count": 1,
 | 
			
		||||
            "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000001"
 | 
			
		||||
          },
 | 
			
		||||
          "client_secret": "pi_NORMALIZED00000000000001_secret_gaaXxocbBjOepNzIQyoHlMcVE",
 | 
			
		||||
          "client_secret": "pi_NORMALIZED00000000000001_secret_oJriuL8EetHpdD5CUJNqX5URe",
 | 
			
		||||
          "confirmation_method": "automatic",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
@@ -179,7 +179,7 @@
 | 
			
		||||
          "next_action": null,
 | 
			
		||||
          "object": "payment_intent",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
          "payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
          "payment_method_configuration_details": null,
 | 
			
		||||
          "payment_method_options": {
 | 
			
		||||
            "card": {
 | 
			
		||||
@@ -205,13 +205,13 @@
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_3OIlXlDEQaroqDjs0FGYzTr9",
 | 
			
		||||
      "id": "evt_3OOgtBDEQaroqDjs1gTQBhmI",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "899e9bd5-f82b-4ed6-a09b-e04dba8c0edd"
 | 
			
		||||
        "idempotency_key": "f54e8348-23f9-4cb1-b1fc-ff0d2e98054c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "payment_intent.succeeded"
 | 
			
		||||
    },
 | 
			
		||||
@@ -283,7 +283,7 @@
 | 
			
		||||
          },
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
          "payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
          "payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
          "payment_method_details": {
 | 
			
		||||
            "card": {
 | 
			
		||||
              "amount_authorized": 48000,
 | 
			
		||||
@@ -326,7 +326,7 @@
 | 
			
		||||
          "radar_options": {},
 | 
			
		||||
          "receipt_email": "othello@zulip.com",
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKN76qqsGMgYp5rJn4Pg6LBYAjHCItgf9iiKG_mmqSy1FuggXUU5fXaGzNuMWlKsIBYlUVnaYe37Fid2s",
 | 
			
		||||
          "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKMqSgawGMgbxTeFgWqQ6LBacX_ismQn_jqqDM6MyL0zCRnmKO4_77GFNX-3aw4Ovl8cgVx1SFQf9wha3",
 | 
			
		||||
          "refunded": false,
 | 
			
		||||
          "refunds": {
 | 
			
		||||
            "data": [],
 | 
			
		||||
@@ -346,13 +346,13 @@
 | 
			
		||||
          "transfer_group": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_3OIlXlDEQaroqDjs0F5rvmUM",
 | 
			
		||||
      "id": "evt_3OOgtBDEQaroqDjs1JllZp1b",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0002",
 | 
			
		||||
        "idempotency_key": "899e9bd5-f82b-4ed6-a09b-e04dba8c0edd"
 | 
			
		||||
        "idempotency_key": "f54e8348-23f9-4cb1-b1fc-ff0d2e98054c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "charge.succeeded"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -46,9 +46,9 @@
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e?s=ap",
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e/pdf?s=ap",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
@@ -234,13 +234,13 @@
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXpDEQaroqDjsFjFkC07g",
 | 
			
		||||
      "id": "evt_1OOgtEDEQaroqDjsAFYnjvLf",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "8b119345-6159-4607-9010-e8237d20823b"
 | 
			
		||||
        "idempotency_key": "83a540e8-86ae-44f4-b8ad-07d466eceb5c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.updated"
 | 
			
		||||
    },
 | 
			
		||||
@@ -457,13 +457,13 @@
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXoDEQaroqDjsll2CgAs8",
 | 
			
		||||
      "id": "evt_1OOgtDDEQaroqDjs5k34j3ec",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0004",
 | 
			
		||||
        "idempotency_key": "294b5729-e1c0-42e1-b77a-2545f8f7006c"
 | 
			
		||||
        "idempotency_key": "6d18b0ca-fb82-4575-b8d7-a7b7b01cf8f2"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.created"
 | 
			
		||||
    },
 | 
			
		||||
@@ -519,13 +519,13 @@
 | 
			
		||||
          "unit_amount_decimal": "8000"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXnDEQaroqDjsoAX0aCzf",
 | 
			
		||||
      "id": "evt_1OOgtDDEQaroqDjsVVjFJQTa",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0005",
 | 
			
		||||
        "idempotency_key": "4ead5392-1ff9-44e0-943e-cd705accc213"
 | 
			
		||||
        "idempotency_key": "29f452f6-715b-4b7d-ace9-e47be2db0894"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
    },
 | 
			
		||||
@@ -581,13 +581,13 @@
 | 
			
		||||
          "unit_amount_decimal": "-48000"
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXnDEQaroqDjsQ5wMmZEb",
 | 
			
		||||
      "id": "evt_1OOgtCDEQaroqDjs0fT6EM3h",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0006",
 | 
			
		||||
        "idempotency_key": "e5d2c5ec-9f6f-4f28-b5b9-e43e3f58b653"
 | 
			
		||||
        "idempotency_key": "ae172b11-60e6-4266-af56-eb6cca44555d"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoiceitem.created"
 | 
			
		||||
    },
 | 
			
		||||
@@ -610,7 +610,7 @@
 | 
			
		||||
          "invoice_prefix": "NORMA01",
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "custom_fields": null,
 | 
			
		||||
            "default_payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
            "default_payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
            "footer": null,
 | 
			
		||||
            "rendering_options": null
 | 
			
		||||
          },
 | 
			
		||||
@@ -633,13 +633,13 @@
 | 
			
		||||
          "default_currency": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXnDEQaroqDjsKXCIWpVq",
 | 
			
		||||
      "id": "evt_1OOgtCDEQaroqDjsCumIPnvk",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0006",
 | 
			
		||||
        "idempotency_key": "e5d2c5ec-9f6f-4f28-b5b9-e43e3f58b653"
 | 
			
		||||
        "idempotency_key": "ae172b11-60e6-4266-af56-eb6cca44555d"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "customer.updated"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -46,9 +46,9 @@
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e?s=ap",
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e/pdf?s=ap",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
@@ -213,459 +213,13 @@
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXpDEQaroqDjsMH9F6Vqj",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 2,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "8b119345-6159-4607-9010-e8237d20823b"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.payment_succeeded"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "othello@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 48000,
 | 
			
		||||
                "amount_excluding_tax": 48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 8000,
 | 
			
		||||
                  "unit_amount_decimal": "8000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "8000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -48000,
 | 
			
		||||
                "amount_excluding_tax": -48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -48000,
 | 
			
		||||
                  "unit_amount_decimal": "-48000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-48000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXpDEQaroqDjsuTbOhFCj",
 | 
			
		||||
      "id": "evt_1OOgtEDEQaroqDjsdHTOaJvF",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "8b119345-6159-4607-9010-e8237d20823b"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.paid"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "othello@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEz0200nMuZd38e/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 48000,
 | 
			
		||||
                "amount_excluding_tax": 48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 8000,
 | 
			
		||||
                  "unit_amount_decimal": "8000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "8000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -48000,
 | 
			
		||||
                "amount_excluding_tax": -48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -48000,
 | 
			
		||||
                  "unit_amount_decimal": "-48000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-48000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXpDEQaroqDjs9DRA4TlG",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "8b119345-6159-4607-9010-e8237d20823b"
 | 
			
		||||
        "idempotency_key": "83a540e8-86ae-44f4-b8ad-07d466eceb5c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.finalized"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,452 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [],
 | 
			
		||||
  "data": [
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "othello@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 48000,
 | 
			
		||||
                "amount_excluding_tax": 48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 8000,
 | 
			
		||||
                  "unit_amount_decimal": "8000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "8000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -48000,
 | 
			
		||||
                "amount_excluding_tax": -48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -48000,
 | 
			
		||||
                  "unit_amount_decimal": "-48000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-48000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgtFDEQaroqDjsUoSUlfK7",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "83a540e8-86ae-44f4-b8ad-07d466eceb5c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.payment_succeeded"
 | 
			
		||||
    },
 | 
			
		||||
    {
 | 
			
		||||
      "api_version": "2020-08-27",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "data": {
 | 
			
		||||
        "object": {
 | 
			
		||||
          "account_country": "US",
 | 
			
		||||
          "account_name": "Kandra Labs, Inc.",
 | 
			
		||||
          "account_tax_ids": null,
 | 
			
		||||
          "amount_due": 0,
 | 
			
		||||
          "amount_paid": 0,
 | 
			
		||||
          "amount_remaining": 0,
 | 
			
		||||
          "amount_shipping": 0,
 | 
			
		||||
          "application": null,
 | 
			
		||||
          "application_fee_amount": null,
 | 
			
		||||
          "attempt_count": 0,
 | 
			
		||||
          "attempted": true,
 | 
			
		||||
          "auto_advance": false,
 | 
			
		||||
          "automatic_tax": {
 | 
			
		||||
            "enabled": false,
 | 
			
		||||
            "status": null
 | 
			
		||||
          },
 | 
			
		||||
          "billing_reason": "manual",
 | 
			
		||||
          "charge": null,
 | 
			
		||||
          "collection_method": "charge_automatically",
 | 
			
		||||
          "created": 1000000000,
 | 
			
		||||
          "currency": "usd",
 | 
			
		||||
          "custom_fields": null,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "customer_address": null,
 | 
			
		||||
          "customer_email": "othello@zulip.com",
 | 
			
		||||
          "customer_name": null,
 | 
			
		||||
          "customer_phone": null,
 | 
			
		||||
          "customer_shipping": null,
 | 
			
		||||
          "customer_tax_exempt": "none",
 | 
			
		||||
          "customer_tax_ids": [],
 | 
			
		||||
          "default_payment_method": null,
 | 
			
		||||
          "default_source": null,
 | 
			
		||||
          "default_tax_rates": [],
 | 
			
		||||
          "description": null,
 | 
			
		||||
          "discount": null,
 | 
			
		||||
          "discounts": [],
 | 
			
		||||
          "due_date": null,
 | 
			
		||||
          "effective_at": 1000000000,
 | 
			
		||||
          "ending_balance": 0,
 | 
			
		||||
          "footer": null,
 | 
			
		||||
          "from_invoice": null,
 | 
			
		||||
          "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP?s=ap",
 | 
			
		||||
          "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
          "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP/pdf?s=ap",
 | 
			
		||||
          "last_finalization_error": null,
 | 
			
		||||
          "latest_revision": null,
 | 
			
		||||
          "lines": {
 | 
			
		||||
            "data": [
 | 
			
		||||
              {
 | 
			
		||||
                "amount": 48000,
 | 
			
		||||
                "amount_excluding_tax": 48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Zulip Cloud Standard",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000001",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000001",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1357095845,
 | 
			
		||||
                  "start": 1325473445
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000001",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0001",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": 8000,
 | 
			
		||||
                  "unit_amount_decimal": "8000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 6,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "8000"
 | 
			
		||||
              },
 | 
			
		||||
              {
 | 
			
		||||
                "amount": -48000,
 | 
			
		||||
                "amount_excluding_tax": -48000,
 | 
			
		||||
                "currency": "usd",
 | 
			
		||||
                "description": "Payment (Card ending in 4242)",
 | 
			
		||||
                "discount_amounts": [],
 | 
			
		||||
                "discountable": false,
 | 
			
		||||
                "discounts": [],
 | 
			
		||||
                "id": "il_NORMALIZED00000000000002",
 | 
			
		||||
                "invoice_item": "ii_NORMALIZED00000000000002",
 | 
			
		||||
                "livemode": false,
 | 
			
		||||
                "metadata": {},
 | 
			
		||||
                "object": "line_item",
 | 
			
		||||
                "period": {
 | 
			
		||||
                  "end": 1000000000,
 | 
			
		||||
                  "start": 1000000000
 | 
			
		||||
                },
 | 
			
		||||
                "plan": null,
 | 
			
		||||
                "price": {
 | 
			
		||||
                  "active": false,
 | 
			
		||||
                  "billing_scheme": "per_unit",
 | 
			
		||||
                  "created": 1000000000,
 | 
			
		||||
                  "currency": "usd",
 | 
			
		||||
                  "custom_unit_amount": null,
 | 
			
		||||
                  "id": "price_NORMALIZED00000000000002",
 | 
			
		||||
                  "livemode": false,
 | 
			
		||||
                  "lookup_key": null,
 | 
			
		||||
                  "metadata": {},
 | 
			
		||||
                  "nickname": null,
 | 
			
		||||
                  "object": "price",
 | 
			
		||||
                  "product": "prod_NORMALIZED0002",
 | 
			
		||||
                  "recurring": null,
 | 
			
		||||
                  "tax_behavior": "unspecified",
 | 
			
		||||
                  "tiers_mode": null,
 | 
			
		||||
                  "transform_quantity": null,
 | 
			
		||||
                  "type": "one_time",
 | 
			
		||||
                  "unit_amount": -48000,
 | 
			
		||||
                  "unit_amount_decimal": "-48000"
 | 
			
		||||
                },
 | 
			
		||||
                "proration": false,
 | 
			
		||||
                "proration_details": {
 | 
			
		||||
                  "credited_items": null
 | 
			
		||||
                },
 | 
			
		||||
                "quantity": 1,
 | 
			
		||||
                "subscription": null,
 | 
			
		||||
                "tax_amounts": [],
 | 
			
		||||
                "tax_rates": [],
 | 
			
		||||
                "type": "invoiceitem",
 | 
			
		||||
                "unit_amount_excluding_tax": "-48000"
 | 
			
		||||
              }
 | 
			
		||||
            ],
 | 
			
		||||
            "has_more": false,
 | 
			
		||||
            "object": "list",
 | 
			
		||||
            "total_count": 2,
 | 
			
		||||
            "url": "/v1/invoices/in_NORMALIZED00000000000001/lines"
 | 
			
		||||
          },
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "next_payment_attempt": null,
 | 
			
		||||
          "number": "NORMALI-0002",
 | 
			
		||||
          "object": "invoice",
 | 
			
		||||
          "on_behalf_of": null,
 | 
			
		||||
          "paid": true,
 | 
			
		||||
          "paid_out_of_band": false,
 | 
			
		||||
          "payment_intent": null,
 | 
			
		||||
          "payment_settings": {
 | 
			
		||||
            "default_mandate": null,
 | 
			
		||||
            "payment_method_options": null,
 | 
			
		||||
            "payment_method_types": null
 | 
			
		||||
          },
 | 
			
		||||
          "period_end": 1000000000,
 | 
			
		||||
          "period_start": 1000000000,
 | 
			
		||||
          "post_payment_credit_notes_amount": 0,
 | 
			
		||||
          "pre_payment_credit_notes_amount": 0,
 | 
			
		||||
          "quote": null,
 | 
			
		||||
          "receipt_number": null,
 | 
			
		||||
          "rendering": {
 | 
			
		||||
            "amount_tax_display": null,
 | 
			
		||||
            "pdf": {
 | 
			
		||||
              "page_size": "letter"
 | 
			
		||||
            }
 | 
			
		||||
          },
 | 
			
		||||
          "rendering_options": null,
 | 
			
		||||
          "shipping_cost": null,
 | 
			
		||||
          "shipping_details": null,
 | 
			
		||||
          "starting_balance": 0,
 | 
			
		||||
          "statement_descriptor": "Zulip Cloud Standard",
 | 
			
		||||
          "status": "paid",
 | 
			
		||||
          "status_transitions": {
 | 
			
		||||
            "finalized_at": 1000000000,
 | 
			
		||||
            "marked_uncollectible_at": null,
 | 
			
		||||
            "paid_at": 1000000000,
 | 
			
		||||
            "voided_at": null
 | 
			
		||||
          },
 | 
			
		||||
          "subscription": null,
 | 
			
		||||
          "subscription_details": {
 | 
			
		||||
            "metadata": null
 | 
			
		||||
          },
 | 
			
		||||
          "subtotal": 0,
 | 
			
		||||
          "subtotal_excluding_tax": 0,
 | 
			
		||||
          "tax": null,
 | 
			
		||||
          "test_clock": null,
 | 
			
		||||
          "total": 0,
 | 
			
		||||
          "total_discount_amounts": [],
 | 
			
		||||
          "total_excluding_tax": 0,
 | 
			
		||||
          "total_tax_amounts": [],
 | 
			
		||||
          "transfer_data": null,
 | 
			
		||||
          "webhooks_delivered_at": null
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OOgtEDEQaroqDjs31T1Sdvi",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0003",
 | 
			
		||||
        "idempotency_key": "83a540e8-86ae-44f4-b8ad-07d466eceb5c"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "invoice.paid"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
 
 | 
			
		||||
@@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "data": [],
 | 
			
		||||
  "has_more": false,
 | 
			
		||||
  "object": "list",
 | 
			
		||||
  "url": "/v1/events"
 | 
			
		||||
}
 | 
			
		||||
@@ -40,9 +40,9 @@
 | 
			
		||||
  "ending_balance": 0,
 | 
			
		||||
  "footer": null,
 | 
			
		||||
  "from_invoice": null,
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEy0200M1ADhNeL?s=ap",
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP?s=ap",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpXWlpYcFFGQklGamtRUExacnBFdXlvU0I2dlZTLDkyMDM0OTEy0200M1ADhNeL/pdf?s=ap",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3VTM2VE14VFRBRmx1OElTSWJaNjhsdTVTSEFhLDkzNDQ2OTg40200ErtgK8hP/pdf?s=ap",
 | 
			
		||||
  "last_finalization_error": null,
 | 
			
		||||
  "latest_revision": null,
 | 
			
		||||
  "lines": {
 | 
			
		||||
 
 | 
			
		||||
@@ -77,7 +77,7 @@
 | 
			
		||||
        },
 | 
			
		||||
        "paid": true,
 | 
			
		||||
        "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
        "payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
        "payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
        "payment_method_details": {
 | 
			
		||||
          "card": {
 | 
			
		||||
            "amount_authorized": 48000,
 | 
			
		||||
@@ -120,7 +120,7 @@
 | 
			
		||||
        "radar_options": {},
 | 
			
		||||
        "receipt_email": "othello@zulip.com",
 | 
			
		||||
        "receipt_number": null,
 | 
			
		||||
        "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKN76qqsGMgZgaui54Nc6LBbpn6dtN1hXcAVR2ChXte8Ecqdu3cWtk6VikFLgoeo7xJBfgY0LR4CIhJhe",
 | 
			
		||||
        "receipt_url": "https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xN3ZUa3dERVFhcm9xRGpzKMmSgawGMgZTj9e32aA6LBbGlHoj3FBEe9DOEy2IVlsA8J2_91CTnxWL-aXGZCF_ZxxY9DELWJ6l6Fat",
 | 
			
		||||
        "refunded": false,
 | 
			
		||||
        "refunds": {
 | 
			
		||||
          "data": [],
 | 
			
		||||
@@ -145,7 +145,7 @@
 | 
			
		||||
    "total_count": 1,
 | 
			
		||||
    "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000001"
 | 
			
		||||
  },
 | 
			
		||||
  "client_secret": "pi_NORMALIZED00000000000001_secret_gaaXxocbBjOepNzIQyoHlMcVE",
 | 
			
		||||
  "client_secret": "pi_NORMALIZED00000000000001_secret_oJriuL8EetHpdD5CUJNqX5URe",
 | 
			
		||||
  "confirmation_method": "automatic",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "currency": "usd",
 | 
			
		||||
@@ -173,7 +173,7 @@
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "payment_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
  "payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlXiDEQaroqDjsvI6zH6rR_secret_P6zWBPBOAxlXilaHazyONXX4vFcGI5s",
 | 
			
		||||
  "client_secret": "seti_1OOgt6DEQaroqDjs93TUjxLL_secret_PD77kiTfSRlYX1C878yXfj8cn3nlOYP",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlXiDEQaroqDjsvI6zH6rR",
 | 
			
		||||
  "id": "seti_1OOgt6DEQaroqDjs93TUjxLL",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlXiDEQaroqDjs8vqJZ53H",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgt6DEQaroqDjstKuF5XfM",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
  "payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -4,12 +4,12 @@
 | 
			
		||||
      "application": null,
 | 
			
		||||
      "automatic_payment_methods": null,
 | 
			
		||||
      "cancellation_reason": null,
 | 
			
		||||
      "client_secret": "seti_1OIlXhDEQaroqDjs1fXXuFlu_secret_P6zWkqWwRlOqpbP3JGSRFT1s92F1sUU",
 | 
			
		||||
      "client_secret": "seti_1OOgt6DEQaroqDjsNS9pHAYJ_secret_PD77bHLLrigZdDckEqkIMVRzM1RxeTL",
 | 
			
		||||
      "created": 1000000000,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "description": null,
 | 
			
		||||
      "flow_directions": null,
 | 
			
		||||
      "id": "seti_1OIlXhDEQaroqDjs1fXXuFlu",
 | 
			
		||||
      "id": "seti_1OOgt6DEQaroqDjsNS9pHAYJ",
 | 
			
		||||
      "last_setup_error": null,
 | 
			
		||||
      "latest_attempt": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlXiDEQaroqDjsvI6zH6rR_secret_P6zWBPBOAxlXilaHazyONXX4vFcGI5s",
 | 
			
		||||
  "client_secret": "seti_1OOgt6DEQaroqDjs93TUjxLL_secret_PD77kiTfSRlYX1C878yXfj8cn3nlOYP",
 | 
			
		||||
  "created": 1000000000,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlXiDEQaroqDjsvI6zH6rR",
 | 
			
		||||
  "id": "seti_1OOgt6DEQaroqDjs93TUjxLL",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlXiDEQaroqDjs8vqJZ53H",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgt6DEQaroqDjstKuF5XfM",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlXhDEQaroqDjsm8crnb7t",
 | 
			
		||||
  "payment_method": "pm_1OOgt6DEQaroqDjsX8dM8afm",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,7 @@
 | 
			
		||||
    "status": null
 | 
			
		||||
  },
 | 
			
		||||
  "billing_address_collection": null,
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
  "client_reference_id": null,
 | 
			
		||||
  "client_secret": null,
 | 
			
		||||
  "consent": null,
 | 
			
		||||
@@ -18,6 +18,7 @@
 | 
			
		||||
  "currency_conversion": null,
 | 
			
		||||
  "custom_fields": [],
 | 
			
		||||
  "custom_text": {
 | 
			
		||||
    "after_submit": null,
 | 
			
		||||
    "shipping_address": null,
 | 
			
		||||
    "submit": null,
 | 
			
		||||
    "terms_of_service_acceptance": null
 | 
			
		||||
@@ -34,7 +35,7 @@
 | 
			
		||||
  },
 | 
			
		||||
  "customer_email": null,
 | 
			
		||||
  "expires_at": 1000000000,
 | 
			
		||||
  "id": "cs_test_NORMALIZED022uV9JxUF8wFtvKu0nBvAfD8xqGg4mH8COGhMYSydyKnyEa",
 | 
			
		||||
  "id": "cs_test_NORMALIZED02AWV6cYpbthkXlCX4KseQQVcTQACasjJUiz0DrBo5lQpfQP",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "invoice_creation": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
@@ -58,7 +59,7 @@
 | 
			
		||||
    "enabled": false
 | 
			
		||||
  },
 | 
			
		||||
  "recovered_from": null,
 | 
			
		||||
  "setup_intent": "seti_1OIlXhDEQaroqDjs1fXXuFlu",
 | 
			
		||||
  "setup_intent": "seti_1OOgt6DEQaroqDjsNS9pHAYJ",
 | 
			
		||||
  "shipping": null,
 | 
			
		||||
  "shipping_address_collection": null,
 | 
			
		||||
  "shipping_options": [],
 | 
			
		||||
@@ -69,5 +70,5 @@
 | 
			
		||||
  "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
  "total_details": null,
 | 
			
		||||
  "ui_mode": "hosted",
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED022uV9JxUF8wFtvKu0nBvAfD8xqGg4mH8COGhMYSydyKnyEa#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED02AWV6cYpbthkXlCX4KseQQVcTQACasjJUiz0DrBo5lQpfQP#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -10,7 +10,7 @@
 | 
			
		||||
        "status": null
 | 
			
		||||
      },
 | 
			
		||||
      "billing_address_collection": null,
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
      "client_reference_id": null,
 | 
			
		||||
      "client_secret": null,
 | 
			
		||||
      "consent": null,
 | 
			
		||||
@@ -20,6 +20,7 @@
 | 
			
		||||
      "currency_conversion": null,
 | 
			
		||||
      "custom_fields": [],
 | 
			
		||||
      "custom_text": {
 | 
			
		||||
        "after_submit": null,
 | 
			
		||||
        "shipping_address": null,
 | 
			
		||||
        "submit": null,
 | 
			
		||||
        "terms_of_service_acceptance": null
 | 
			
		||||
@@ -36,7 +37,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "customer_email": null,
 | 
			
		||||
      "expires_at": 1000000000,
 | 
			
		||||
      "id": "cs_test_NORMALIZED022uV9JxUF8wFtvKu0nBvAfD8xqGg4mH8COGhMYSydyKnyEa",
 | 
			
		||||
      "id": "cs_test_NORMALIZED02AWV6cYpbthkXlCX4KseQQVcTQACasjJUiz0DrBo5lQpfQP",
 | 
			
		||||
      "invoice": null,
 | 
			
		||||
      "invoice_creation": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
@@ -60,7 +61,7 @@
 | 
			
		||||
        "enabled": false
 | 
			
		||||
      },
 | 
			
		||||
      "recovered_from": null,
 | 
			
		||||
      "setup_intent": "seti_1OIlXhDEQaroqDjs1fXXuFlu",
 | 
			
		||||
      "setup_intent": "seti_1OOgt6DEQaroqDjsNS9pHAYJ",
 | 
			
		||||
      "shipping": null,
 | 
			
		||||
      "shipping_address_collection": null,
 | 
			
		||||
      "shipping_options": [],
 | 
			
		||||
@@ -71,7 +72,7 @@
 | 
			
		||||
      "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
      "total_details": null,
 | 
			
		||||
      "ui_mode": "hosted",
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED022uV9JxUF8wFtvKu0nBvAfD8xqGg4mH8COGhMYSydyKnyEa#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED02AWV6cYpbthkXlCX4KseQQVcTQACasjJUiz0DrBo5lQpfQP#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000002,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
      "id": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000002,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
      "id": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000002,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
      "id": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -19,7 +19,7 @@
 | 
			
		||||
          "invoice_prefix": "NORMA01",
 | 
			
		||||
          "invoice_settings": {
 | 
			
		||||
            "custom_fields": null,
 | 
			
		||||
            "default_payment_method": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
            "default_payment_method": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
            "footer": null,
 | 
			
		||||
            "rendering_options": null
 | 
			
		||||
          },
 | 
			
		||||
@@ -43,13 +43,13 @@
 | 
			
		||||
          }
 | 
			
		||||
        }
 | 
			
		||||
      },
 | 
			
		||||
      "id": "evt_1OIlXvDEQaroqDjsoJvhLiqB",
 | 
			
		||||
      "id": "evt_1OOgtKDEQaroqDjs0YX0x74h",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "object": "event",
 | 
			
		||||
      "pending_webhooks": 0,
 | 
			
		||||
      "request": {
 | 
			
		||||
        "id": "req_NORMALIZED0001",
 | 
			
		||||
        "idempotency_key": "49bc0d95-d9ec-4872-891b-a1ce23989500"
 | 
			
		||||
        "idempotency_key": "e357d52d-7f39-4c65-8f4d-8f03654f3c28"
 | 
			
		||||
      },
 | 
			
		||||
      "type": "customer.updated"
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -87,7 +87,7 @@
 | 
			
		||||
            },
 | 
			
		||||
            "paid": false,
 | 
			
		||||
            "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
            "payment_method": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
            "payment_method": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
            "payment_method_details": {
 | 
			
		||||
              "card": {
 | 
			
		||||
                "amount_authorized": null,
 | 
			
		||||
@@ -127,7 +127,6 @@
 | 
			
		||||
              },
 | 
			
		||||
              "type": "card"
 | 
			
		||||
            },
 | 
			
		||||
            "radar_options": {},
 | 
			
		||||
            "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
            "receipt_number": null,
 | 
			
		||||
            "receipt_url": null,
 | 
			
		||||
@@ -149,7 +148,7 @@
 | 
			
		||||
        "total_count": 1,
 | 
			
		||||
        "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000001"
 | 
			
		||||
      },
 | 
			
		||||
      "client_secret": "pi_NORMALIZED00000000000001_secret_n1KKNJkXE3HBn9XQXDPAxg09C",
 | 
			
		||||
      "client_secret": "pi_NORMALIZED00000000000001_secret_TeKOrWHhfOdaeyKvKYhOSoLWP",
 | 
			
		||||
      "confirmation_method": "automatic",
 | 
			
		||||
      "created": 1010000004,
 | 
			
		||||
      "currency": "usd",
 | 
			
		||||
@@ -204,7 +203,7 @@
 | 
			
		||||
          },
 | 
			
		||||
          "created": 1010000002,
 | 
			
		||||
          "customer": "cus_NORMALIZED0001",
 | 
			
		||||
          "id": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
          "id": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
          "livemode": false,
 | 
			
		||||
          "metadata": {},
 | 
			
		||||
          "object": "payment_method",
 | 
			
		||||
@@ -297,13 +296,13 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000002,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
      "id": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
      "type": "card"
 | 
			
		||||
    },
 | 
			
		||||
    "request_log_url": "https://dashboard.stripe.com/test/logs/req_NORMALIZED0002?t=1701494121",
 | 
			
		||||
    "request_log_url": "https://dashboard.stripe.com/test/logs/req_NORMALIZED0002?t=1702906196",
 | 
			
		||||
    "setup_intent": null,
 | 
			
		||||
    "source": null,
 | 
			
		||||
    "type": "card_error"
 | 
			
		||||
@@ -316,11 +315,11 @@
 | 
			
		||||
    "Access-Control-Max-Age": "300",
 | 
			
		||||
    "Cache-Control": "no-cache, no-store",
 | 
			
		||||
    "Connection": "keep-alive",
 | 
			
		||||
    "Content-Length": "9960",
 | 
			
		||||
    "Content-Length": "9914",
 | 
			
		||||
    "Content-Security-Policy": "report-uri https://q.stripe.com/csp-report?p=v1%2Fpayment_intents; block-all-mixed-content; default-src 'none'; base-uri 'none'; form-action 'none'; frame-ancestors 'none'; img-src 'self'; script-src 'self' 'report-sample'; style-src 'self'",
 | 
			
		||||
    "Content-Type": "application/json",
 | 
			
		||||
    "Date": "NORMALIZED DATETIME",
 | 
			
		||||
    "Idempotency-Key": "2a366e05-a7b2-4fd7-81d6-8cb36f6a2b1b",
 | 
			
		||||
    "Idempotency-Key": "b48a3e58-fdc2-416c-aeaf-85c42e7f0a9e",
 | 
			
		||||
    "Original-Request": "req_NORMALIZED0002",
 | 
			
		||||
    "Request-Id": "req_NORMALIZED0002",
 | 
			
		||||
    "Server": "nginx",
 | 
			
		||||
@@ -418,7 +417,7 @@
 | 
			
		||||
              },
 | 
			
		||||
              "paid": false,
 | 
			
		||||
              "payment_intent": "pi_NORMALIZED00000000000001",
 | 
			
		||||
              "payment_method": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
              "payment_method": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
              "payment_method_details": {
 | 
			
		||||
                "card": {
 | 
			
		||||
                  "amount_authorized": null,
 | 
			
		||||
@@ -458,7 +457,6 @@
 | 
			
		||||
                },
 | 
			
		||||
                "type": "card"
 | 
			
		||||
              },
 | 
			
		||||
              "radar_options": {},
 | 
			
		||||
              "receipt_email": "hamlet@zulip.com",
 | 
			
		||||
              "receipt_number": null,
 | 
			
		||||
              "receipt_url": null,
 | 
			
		||||
@@ -486,7 +484,7 @@
 | 
			
		||||
          "total_count": 1,
 | 
			
		||||
          "url": "/v1/charges?payment_intent=pi_NORMALIZED00000000000001"
 | 
			
		||||
        },
 | 
			
		||||
        "client_secret": "pi_NORMALIZED00000000000001_secret_n1KKNJkXE3HBn9XQXDPAxg09C",
 | 
			
		||||
        "client_secret": "pi_NORMALIZED00000000000001_secret_TeKOrWHhfOdaeyKvKYhOSoLWP",
 | 
			
		||||
        "confirmation_method": "automatic",
 | 
			
		||||
        "created": 1010000004,
 | 
			
		||||
        "currency": "usd",
 | 
			
		||||
@@ -541,7 +539,7 @@
 | 
			
		||||
            },
 | 
			
		||||
            "created": 1010000002,
 | 
			
		||||
            "customer": "cus_NORMALIZED0001",
 | 
			
		||||
            "id": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
            "id": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
            "livemode": false,
 | 
			
		||||
            "metadata": {},
 | 
			
		||||
            "object": "payment_method",
 | 
			
		||||
@@ -634,13 +632,13 @@
 | 
			
		||||
        },
 | 
			
		||||
        "created": 1010000002,
 | 
			
		||||
        "customer": "cus_NORMALIZED0001",
 | 
			
		||||
        "id": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
        "id": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
        "livemode": false,
 | 
			
		||||
        "metadata": {},
 | 
			
		||||
        "object": "payment_method",
 | 
			
		||||
        "type": "card"
 | 
			
		||||
      },
 | 
			
		||||
      "request_log_url": "https://dashboard.stripe.com/test/logs/req_NORMALIZED0002?t=1701494121",
 | 
			
		||||
      "request_log_url": "https://dashboard.stripe.com/test/logs/req_NORMALIZED0002?t=1702906196",
 | 
			
		||||
      "type": "card_error"
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlXtDEQaroqDjsgZwyhjiU_secret_P6zWKS52xWBvynYvmsJtxtyLfgPePhv",
 | 
			
		||||
  "client_secret": "seti_1OOgtJDEQaroqDjsqKShjgJ0_secret_PD77mGPVAi98wqhNQO7oFyHMsck1UIF",
 | 
			
		||||
  "created": 1010000002,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlXtDEQaroqDjsgZwyhjiU",
 | 
			
		||||
  "id": "seti_1OOgtJDEQaroqDjsqKShjgJ0",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlXtDEQaroqDjsM8404dt1",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgtJDEQaroqDjsZIdBffpA",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
  "payment_method": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -4,12 +4,12 @@
 | 
			
		||||
      "application": null,
 | 
			
		||||
      "automatic_payment_methods": null,
 | 
			
		||||
      "cancellation_reason": null,
 | 
			
		||||
      "client_secret": "seti_1OIlXtDEQaroqDjsDKuSZ1M8_secret_P6zWKTq7xYbOiJ6GJDWEVXKFN7GXBLr",
 | 
			
		||||
      "created": 1010000002,
 | 
			
		||||
      "client_secret": "seti_1OOgtIDEQaroqDjsH5Pxmj5F_secret_PD77Nw4Rn3azoz4mcCigYo9IpcKaEBP",
 | 
			
		||||
      "created": 1010000005,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "description": null,
 | 
			
		||||
      "flow_directions": null,
 | 
			
		||||
      "id": "seti_1OIlXtDEQaroqDjsDKuSZ1M8",
 | 
			
		||||
      "id": "seti_1OOgtIDEQaroqDjsH5Pxmj5F",
 | 
			
		||||
      "last_setup_error": null,
 | 
			
		||||
      "latest_attempt": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
 
 | 
			
		||||
@@ -2,21 +2,21 @@
 | 
			
		||||
  "application": null,
 | 
			
		||||
  "automatic_payment_methods": null,
 | 
			
		||||
  "cancellation_reason": null,
 | 
			
		||||
  "client_secret": "seti_1OIlXtDEQaroqDjsgZwyhjiU_secret_P6zWKS52xWBvynYvmsJtxtyLfgPePhv",
 | 
			
		||||
  "client_secret": "seti_1OOgtJDEQaroqDjsqKShjgJ0_secret_PD77mGPVAi98wqhNQO7oFyHMsck1UIF",
 | 
			
		||||
  "created": 1010000002,
 | 
			
		||||
  "customer": "cus_NORMALIZED0001",
 | 
			
		||||
  "description": null,
 | 
			
		||||
  "flow_directions": null,
 | 
			
		||||
  "id": "seti_1OIlXtDEQaroqDjsgZwyhjiU",
 | 
			
		||||
  "id": "seti_1OOgtJDEQaroqDjsqKShjgJ0",
 | 
			
		||||
  "last_setup_error": null,
 | 
			
		||||
  "latest_attempt": "setatt_1OIlXtDEQaroqDjsM8404dt1",
 | 
			
		||||
  "latest_attempt": "setatt_1OOgtJDEQaroqDjsZIdBffpA",
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
  "mandate": null,
 | 
			
		||||
  "metadata": {},
 | 
			
		||||
  "next_action": null,
 | 
			
		||||
  "object": "setup_intent",
 | 
			
		||||
  "on_behalf_of": null,
 | 
			
		||||
  "payment_method": "pm_1OIlXtDEQaroqDjsW5IClxeu",
 | 
			
		||||
  "payment_method": "pm_1OOgtJDEQaroqDjswedepU4i",
 | 
			
		||||
  "payment_method_configuration_details": null,
 | 
			
		||||
  "payment_method_options": {
 | 
			
		||||
    "card": {
 | 
			
		||||
 
 | 
			
		||||
@@ -8,16 +8,17 @@
 | 
			
		||||
    "status": null
 | 
			
		||||
  },
 | 
			
		||||
  "billing_address_collection": null,
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
  "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
  "client_reference_id": null,
 | 
			
		||||
  "client_secret": null,
 | 
			
		||||
  "consent": null,
 | 
			
		||||
  "consent_collection": null,
 | 
			
		||||
  "created": 1010000002,
 | 
			
		||||
  "created": 1010000005,
 | 
			
		||||
  "currency": null,
 | 
			
		||||
  "currency_conversion": null,
 | 
			
		||||
  "custom_fields": [],
 | 
			
		||||
  "custom_text": {
 | 
			
		||||
    "after_submit": null,
 | 
			
		||||
    "shipping_address": null,
 | 
			
		||||
    "submit": null,
 | 
			
		||||
    "terms_of_service_acceptance": null
 | 
			
		||||
@@ -34,7 +35,7 @@
 | 
			
		||||
  },
 | 
			
		||||
  "customer_email": null,
 | 
			
		||||
  "expires_at": 1000000000,
 | 
			
		||||
  "id": "cs_test_NORMALIZED01QKi3kfWTaa0Vmcpa0MZAkZw6V4dC3cwJuR48tRmTUrynWd",
 | 
			
		||||
  "id": "cs_test_NORMALIZED01JH1bdUmxdHTMXZT2sr8jOQ7u1BKdpcZoFu8mvX9PlRVRsU",
 | 
			
		||||
  "invoice": null,
 | 
			
		||||
  "invoice_creation": null,
 | 
			
		||||
  "livemode": false,
 | 
			
		||||
@@ -58,7 +59,7 @@
 | 
			
		||||
    "enabled": false
 | 
			
		||||
  },
 | 
			
		||||
  "recovered_from": null,
 | 
			
		||||
  "setup_intent": "seti_1OIlXtDEQaroqDjsDKuSZ1M8",
 | 
			
		||||
  "setup_intent": "seti_1OOgtIDEQaroqDjsH5Pxmj5F",
 | 
			
		||||
  "shipping": null,
 | 
			
		||||
  "shipping_address_collection": null,
 | 
			
		||||
  "shipping_options": [],
 | 
			
		||||
@@ -69,5 +70,5 @@
 | 
			
		||||
  "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
  "total_details": null,
 | 
			
		||||
  "ui_mode": "hosted",
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED01QKi3kfWTaa0Vmcpa0MZAkZw6V4dC3cwJuR48tRmTUrynWd#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
  "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED01JH1bdUmxdHTMXZT2sr8jOQ7u1BKdpcZoFu8mvX9PlRVRsU#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -10,16 +10,17 @@
 | 
			
		||||
        "status": null
 | 
			
		||||
      },
 | 
			
		||||
      "billing_address_collection": null,
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/",
 | 
			
		||||
      "cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
 | 
			
		||||
      "client_reference_id": null,
 | 
			
		||||
      "client_secret": null,
 | 
			
		||||
      "consent": null,
 | 
			
		||||
      "consent_collection": null,
 | 
			
		||||
      "created": 1010000002,
 | 
			
		||||
      "created": 1010000005,
 | 
			
		||||
      "currency": null,
 | 
			
		||||
      "currency_conversion": null,
 | 
			
		||||
      "custom_fields": [],
 | 
			
		||||
      "custom_text": {
 | 
			
		||||
        "after_submit": null,
 | 
			
		||||
        "shipping_address": null,
 | 
			
		||||
        "submit": null,
 | 
			
		||||
        "terms_of_service_acceptance": null
 | 
			
		||||
@@ -36,7 +37,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "customer_email": null,
 | 
			
		||||
      "expires_at": 1000000000,
 | 
			
		||||
      "id": "cs_test_NORMALIZED01QKi3kfWTaa0Vmcpa0MZAkZw6V4dC3cwJuR48tRmTUrynWd",
 | 
			
		||||
      "id": "cs_test_NORMALIZED01JH1bdUmxdHTMXZT2sr8jOQ7u1BKdpcZoFu8mvX9PlRVRsU",
 | 
			
		||||
      "invoice": null,
 | 
			
		||||
      "invoice_creation": null,
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
@@ -60,7 +61,7 @@
 | 
			
		||||
        "enabled": false
 | 
			
		||||
      },
 | 
			
		||||
      "recovered_from": null,
 | 
			
		||||
      "setup_intent": "seti_1OIlXtDEQaroqDjsDKuSZ1M8",
 | 
			
		||||
      "setup_intent": "seti_1OOgtIDEQaroqDjsH5Pxmj5F",
 | 
			
		||||
      "shipping": null,
 | 
			
		||||
      "shipping_address_collection": null,
 | 
			
		||||
      "shipping_options": [],
 | 
			
		||||
@@ -71,7 +72,7 @@
 | 
			
		||||
      "success_url": "http://zulip.testserver/billing/event_status?stripe_session_id={CHECKOUT_SESSION_ID}",
 | 
			
		||||
      "total_details": null,
 | 
			
		||||
      "ui_mode": "hosted",
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED01QKi3kfWTaa0Vmcpa0MZAkZw6V4dC3cwJuR48tRmTUrynWd#fidkdWxOYHwnPyd1blpxYHZxWl1UZjFOczZJXUE2PUpzUWNPV2ZpdlFzUCcpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBaZmppcGhrJyknYGtkZ2lgVWlkZmBtamlhYHd2Jz9xd3BgeCUl"
 | 
			
		||||
      "url": "https://checkout.stripe.com/c/pay/cs_test_NORMALIZED01JH1bdUmxdHTMXZT2sr8jOQ7u1BKdpcZoFu8mvX9PlRVRsU#fid1d2BpamRhQ2prcSc%2FJ1ZqcHdmYCVWZGt2JVV3aicpJ2R1bE5gfCc%2FJ3VuWnFgdnFaXVRmMU5zNkldQTY9SnNRY09XZml2UXNQJyknY3dqaFZgd3Ngdyc%2FcXdwYCknaWR8anBxUXx1YCc%2FJ3Zsa2JpYFpmamlwaGsnKSdga2RnaWBVaWRmYG1qaWFgd3YnP3F3cGB4JSUl"
 | 
			
		||||
    }
 | 
			
		||||
  ],
 | 
			
		||||
  "has_more": true,
 | 
			
		||||
 
 | 
			
		||||
@@ -40,9 +40,9 @@
 | 
			
		||||
  "ending_balance": 0,
 | 
			
		||||
  "footer": null,
 | 
			
		||||
  "from_invoice": null,
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpYRmRrRWpBczByNUYyVlFXM2FIdGx1Q1JKV21yLDkyMDM0OTI10200SOwO7QdE?s=ap",
 | 
			
		||||
  "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3cDdXOENhSFNkR0w5cnFSVjZzYTd4U29SZVRxLDkzNDQ2OTk50200YtcfIpfx?s=ap",
 | 
			
		||||
  "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpYRmRrRWpBczByNUYyVlFXM2FIdGx1Q1JKV21yLDkyMDM0OTI10200SOwO7QdE/pdf?s=ap",
 | 
			
		||||
  "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3cDdXOENhSFNkR0w5cnFSVjZzYTd4U29SZVRxLDkzNDQ3MDAw0200Zk4APRlz/pdf?s=ap",
 | 
			
		||||
  "last_finalization_error": null,
 | 
			
		||||
  "latest_revision": null,
 | 
			
		||||
  "lines": {
 | 
			
		||||
 
 | 
			
		||||
@@ -42,9 +42,9 @@
 | 
			
		||||
      "ending_balance": 0,
 | 
			
		||||
      "footer": null,
 | 
			
		||||
      "from_invoice": null,
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpYRmRrRWpBczByNUYyVlFXM2FIdGx1Q1JKV21yLDkyMDM0OTI10200SOwO7QdE?s=ap",
 | 
			
		||||
      "hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3cDdXOENhSFNkR0w5cnFSVjZzYTd4U29SZVRxLDkzNDQ3MDAw0200Zk4APRlz?s=ap",
 | 
			
		||||
      "id": "in_NORMALIZED00000000000001",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QNnpYRmRrRWpBczByNUYyVlFXM2FIdGx1Q1JKV21yLDkyMDM0OTI10200SOwO7QdE/pdf?s=ap",
 | 
			
		||||
      "invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED000001/test_NORMALIZED01a3dERVFhcm9xRGpzLF9QRDc3cDdXOENhSFNkR0w5cnFSVjZzYTd4U29SZVRxLDkzNDQ3MDAw0200Zk4APRlz/pdf?s=ap",
 | 
			
		||||
      "last_finalization_error": null,
 | 
			
		||||
      "latest_revision": null,
 | 
			
		||||
      "lines": {
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlY3DEQaroqDjslFpuk1CA",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtSDEQaroqDjsjng1KClS",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlY7DEQaroqDjsWWd7JRsa",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtWDEQaroqDjsO1hWI5f0",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlYBDEQaroqDjsjD1cNbBj",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtaDEQaroqDjsoIpDr2ht",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlYFDEQaroqDjso6F7pFrk",
 | 
			
		||||
    "default_payment_method": "pm_1OOgteDEQaroqDjsD9IJGSgg",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlYIDEQaroqDjsByOEWq10",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtiDEQaroqDjscIU9uVLT",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlYMDEQaroqDjsgwTv4ukx",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtmDEQaroqDjs7NIGRCne",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlYQDEQaroqDjs5Yt0Xtvd",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtqDEQaroqDjspIfq5RHi",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlYUDEQaroqDjsYOMRzrid",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtuDEQaroqDjsyqm3t3xf",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@
 | 
			
		||||
  "invoice_prefix": "NORMA01",
 | 
			
		||||
  "invoice_settings": {
 | 
			
		||||
    "custom_fields": null,
 | 
			
		||||
    "default_payment_method": "pm_1OIlYXDEQaroqDjssam6O1GA",
 | 
			
		||||
    "default_payment_method": "pm_1OOgtyDEQaroqDjslyOOaDfW",
 | 
			
		||||
    "footer": null,
 | 
			
		||||
    "rendering_options": null
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000002,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlY3DEQaroqDjslFpuk1CA",
 | 
			
		||||
      "id": "pm_1OOgtSDEQaroqDjsjng1KClS",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000003,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlYIDEQaroqDjsByOEWq10",
 | 
			
		||||
      "id": "pm_1OOgtiDEQaroqDjscIU9uVLT",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000004,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlYMDEQaroqDjsgwTv4ukx",
 | 
			
		||||
      "id": "pm_1OOgtmDEQaroqDjs7NIGRCne",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000004,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlYMDEQaroqDjsgwTv4ukx",
 | 
			
		||||
      "id": "pm_1OOgtmDEQaroqDjs7NIGRCne",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000005,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlYQDEQaroqDjs5Yt0Xtvd",
 | 
			
		||||
      "id": "pm_1OOgtqDEQaroqDjspIfq5RHi",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,7 @@
 | 
			
		||||
      },
 | 
			
		||||
      "created": 1010000005,
 | 
			
		||||
      "customer": "cus_NORMALIZED0001",
 | 
			
		||||
      "id": "pm_1OIlYQDEQaroqDjs5Yt0Xtvd",
 | 
			
		||||
      "id": "pm_1OOgtqDEQaroqDjspIfq5RHi",
 | 
			
		||||
      "livemode": false,
 | 
			
		||||
      "metadata": {},
 | 
			
		||||
      "object": "payment_method",
 | 
			
		||||
 
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user