mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 18:36:36 +00:00
stripe: Upgrade to latest version.
This includes some changes to specify the correct type for params.
This commit is contained in:
@@ -102,7 +102,7 @@ CARD_CAPITALIZATION = {
|
||||
}
|
||||
|
||||
# The version of Stripe API the billing system supports.
|
||||
STRIPE_API_VERSION = "2025-04-30.basil"
|
||||
STRIPE_API_VERSION = "2025-09-30.clover"
|
||||
|
||||
stripe.api_version = STRIPE_API_VERSION
|
||||
|
||||
@@ -777,7 +777,7 @@ class BillingSession(ABC):
|
||||
assert customer is not None and customer.stripe_customer_id is not None
|
||||
|
||||
# Check if customer has any $0 invoices.
|
||||
list_params = stripe.Invoice.ListParams(
|
||||
list_params = stripe.params.InvoiceListParams(
|
||||
customer=customer.stripe_customer_id,
|
||||
limit=1,
|
||||
status="paid",
|
||||
@@ -854,7 +854,7 @@ class BillingSession(ABC):
|
||||
plan_tier: int,
|
||||
billing_schedule: int,
|
||||
charge_automatically: bool,
|
||||
invoice_period: stripe.InvoiceItem.CreateParamsPeriod,
|
||||
invoice_period: stripe.params.InvoiceItemCreateParamsPeriod,
|
||||
license_management: str | None = None,
|
||||
days_until_due: int | None = None,
|
||||
on_free_trial: bool = False,
|
||||
@@ -892,7 +892,7 @@ class BillingSession(ABC):
|
||||
# If automatic charge fails, we simply void the invoice.
|
||||
# https://stripe.com/docs/invoicing/integration/automatic-advancement-collection
|
||||
auto_advance = not charge_automatically
|
||||
invoice_params = stripe.Invoice.CreateParams(
|
||||
invoice_params = stripe.params.InvoiceCreateParams(
|
||||
auto_advance=auto_advance,
|
||||
collection_method=collection_method,
|
||||
customer=customer.stripe_customer_id,
|
||||
@@ -3249,12 +3249,12 @@ class BillingSession(ABC):
|
||||
need_to_invoice = False
|
||||
|
||||
# Track if we added renewal invoice item which is possibly eligible for discount.
|
||||
renewal_invoice_period: stripe.InvoiceItem.CreateParamsPeriod | None = None
|
||||
renewal_invoice_period: stripe.params.InvoiceItemCreateParamsPeriod | None = None
|
||||
for ledger_entry in LicenseLedger.objects.filter(
|
||||
plan=plan, id__gt=invoiced_through_id, event_time__lte=event_time
|
||||
).order_by("id"):
|
||||
# InvoiceItem variables.
|
||||
invoice_item_params = stripe.InvoiceItem.CreateParams(
|
||||
invoice_item_params = stripe.params.InvoiceItemCreateParams(
|
||||
customer=plan.customer.stripe_customer_id
|
||||
)
|
||||
|
||||
@@ -3312,7 +3312,7 @@ class BillingSession(ABC):
|
||||
else:
|
||||
collection_method = "send_invoice"
|
||||
days_until_due = DEFAULT_INVOICE_DAYS_UNTIL_DUE
|
||||
invoice_params = stripe.Invoice.CreateParams(
|
||||
invoice_params = stripe.params.InvoiceCreateParams(
|
||||
auto_advance=True,
|
||||
collection_method=collection_method,
|
||||
customer=plan.customer.stripe_customer_id,
|
||||
@@ -3323,7 +3323,7 @@ class BillingSession(ABC):
|
||||
stripe_invoice = stripe.Invoice.create(**invoice_params)
|
||||
|
||||
if invoice_item_params.get("description") is not None:
|
||||
invoice_period = stripe.InvoiceItem.CreateParamsPeriod(
|
||||
invoice_period = stripe.params.InvoiceItemCreateParamsPeriod(
|
||||
start=datetime_to_timestamp(ledger_entry.event_time),
|
||||
end=datetime_to_timestamp(
|
||||
get_plan_renewal_or_end_date(plan, ledger_entry.event_time)
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 100000,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "082087",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -172,7 +172,7 @@
|
||||
"id": "add_minimum_licenses--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"pending_webhooks": 2,
|
||||
"request": {
|
||||
"id": "add_minimum_licenses--Event.list.2.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
@@ -180,7 +180,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -202,6 +202,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "add_minimum_licenses--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "add_minimum_licenses--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": "add_minimum_licenses--Charge.list.1.json",
|
||||
@@ -251,7 +252,7 @@
|
||||
"type": "payment_intent.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -312,7 +313,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 100000,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "082087",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
@@ -378,7 +379,7 @@
|
||||
"type": "charge.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -547,7 +548,7 @@
|
||||
"type": "invoice.finalized"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -732,7 +733,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -754,6 +755,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "add_minimum_licenses--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "add_minimum_licenses--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -803,7 +805,7 @@
|
||||
"type": "payment_intent.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -984,7 +986,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -999,6 +1001,7 @@
|
||||
"invoice": "add_minimum_licenses--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 100000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
@@ -1030,7 +1033,7 @@
|
||||
"type": "invoiceitem.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1144,7 +1147,7 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
},
|
||||
"id": "add_minimum_licenses--Event.list.2.json",
|
||||
@@ -1158,7 +1161,7 @@
|
||||
"type": "invoice.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -170,7 +170,7 @@
|
||||
"type": "invoice.payment_succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 100000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 7200,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "119016",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
|
||||
@@ -58,7 +58,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 36000,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "062836",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
@@ -170,7 +170,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 7200,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "119016",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -180,7 +180,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -202,6 +202,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "attach_discount_to_realm--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "attach_discount_to_realm--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": "attach_discount_to_realm--Charge.list.1.json",
|
||||
@@ -251,7 +252,7 @@
|
||||
"type": "payment_intent.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -312,7 +313,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 7200,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "119016",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
@@ -378,7 +379,7 @@
|
||||
"type": "charge.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -547,7 +548,7 @@
|
||||
"type": "invoice.finalized"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -732,7 +733,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -754,6 +755,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "attach_discount_to_realm--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "attach_discount_to_realm--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -803,7 +805,7 @@
|
||||
"type": "payment_intent.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -984,7 +986,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -999,6 +1001,7 @@
|
||||
"invoice": "attach_discount_to_realm--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 7200,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
@@ -1030,7 +1033,7 @@
|
||||
"type": "invoiceitem.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1144,7 +1147,7 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
},
|
||||
"id": "attach_discount_to_realm--Event.list.2.json",
|
||||
@@ -1158,7 +1161,7 @@
|
||||
"type": "invoice.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -170,7 +170,7 @@
|
||||
"type": "invoice.payment_succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -162,7 +162,7 @@
|
||||
"id": "attach_discount_to_realm--Event.list.6.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"pending_webhooks": 2,
|
||||
"request": {
|
||||
"id": "attach_discount_to_realm--Event.list.6.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
@@ -170,7 +170,7 @@
|
||||
"type": "invoice.paid"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -341,7 +341,7 @@
|
||||
"id": "attach_discount_to_realm--Event.list.6.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"pending_webhooks": 2,
|
||||
"request": {
|
||||
"id": "attach_discount_to_realm--Event.list.6.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
@@ -349,7 +349,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -371,6 +371,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "cus_NORMALIZED",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "attach_discount_to_realm--Event.list.6.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": "attach_discount_to_realm--Charge.list.2.json",
|
||||
@@ -420,7 +421,7 @@
|
||||
"type": "payment_intent.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -481,7 +482,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 36000,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "062836",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
@@ -547,7 +548,7 @@
|
||||
"type": "charge.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -716,7 +717,7 @@
|
||||
"type": "invoice.finalized"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -901,7 +902,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -923,6 +924,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "cus_NORMALIZED",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "attach_discount_to_realm--Event.list.6.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -972,7 +974,7 @@
|
||||
"type": "payment_intent.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1153,7 +1155,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1168,6 +1170,7 @@
|
||||
"invoice": "attach_discount_to_realm--Event.list.6.json",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 36000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
@@ -1199,7 +1202,7 @@
|
||||
"type": "invoiceitem.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1313,7 +1316,7 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
},
|
||||
"id": "attach_discount_to_realm--Event.list.6.json",
|
||||
@@ -1327,7 +1330,7 @@
|
||||
"type": "invoice.created"
|
||||
}
|
||||
],
|
||||
"has_more": false,
|
||||
"has_more": true,
|
||||
"object": "list",
|
||||
"url": "/v1/events"
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 7200,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 36000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 24000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -172,7 +172,7 @@
|
||||
"id": "billing_page_permissions--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"pending_webhooks": 2,
|
||||
"request": {
|
||||
"id": "billing_page_permissions--Event.list.2.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
@@ -180,7 +180,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -202,6 +202,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "billing_page_permissions--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "billing_page_permissions--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": "billing_page_permissions--Event.list.2.json",
|
||||
@@ -251,7 +252,7 @@
|
||||
"type": "payment_intent.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -312,7 +313,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 48000,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "840154",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
@@ -370,7 +371,7 @@
|
||||
"id": "billing_page_permissions--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"pending_webhooks": 2,
|
||||
"request": {
|
||||
"id": "billing_page_permissions--Event.list.2.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
@@ -378,7 +379,7 @@
|
||||
"type": "charge.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -547,7 +548,7 @@
|
||||
"type": "invoice.finalized"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -732,7 +733,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -754,6 +755,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "billing_page_permissions--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "billing_page_permissions--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -803,7 +805,7 @@
|
||||
"type": "payment_intent.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -958,7 +960,7 @@
|
||||
"total_excluding_tax": 48000,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
},
|
||||
"previous_attributes": {
|
||||
"amount_due": 0,
|
||||
@@ -984,7 +986,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -999,6 +1001,7 @@
|
||||
"invoice": "billing_page_permissions--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 48000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
@@ -1030,7 +1033,7 @@
|
||||
"type": "invoiceitem.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1144,7 +1147,7 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
},
|
||||
"id": "billing_page_permissions--Event.list.2.json",
|
||||
@@ -1158,7 +1161,7 @@
|
||||
"type": "invoice.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1208,7 +1211,7 @@
|
||||
"type": "customer.updated"
|
||||
}
|
||||
],
|
||||
"has_more": false,
|
||||
"has_more": true,
|
||||
"object": "list",
|
||||
"url": "/v1/events"
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -170,7 +170,7 @@
|
||||
"type": "invoice.payment_succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 48000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "desdemona@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "desdemona@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,44 +1,27 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
"address": null,
|
||||
"balance": 0,
|
||||
"amount_paid": 48000,
|
||||
"amount_requested": 48000,
|
||||
"created": 1000000000,
|
||||
"currency": null,
|
||||
"default_source": null,
|
||||
"delinquent": false,
|
||||
"description": "zulip (Zulip Dev)",
|
||||
"discount": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"id": "cancel_downgrade_at_end_of_free_trial--Customer.create.1.json",
|
||||
"invoice_prefix": "NORMALIZED",
|
||||
"invoice_settings": {
|
||||
"custom_fields": null,
|
||||
"default_payment_method": "pm_NORMALIZED",
|
||||
"footer": null,
|
||||
"rendering_options": null
|
||||
},
|
||||
"currency": "usd",
|
||||
"id": "cancel_downgrade_at_end_of_free_trial--Event.list.1.json",
|
||||
"invoice": "in_NORMALIZED",
|
||||
"is_default": true,
|
||||
"livemode": false,
|
||||
"metadata": {
|
||||
"realm_id": "1",
|
||||
"realm_str": "zulip"
|
||||
"object": "invoice_payment",
|
||||
"payment": {
|
||||
"payment_intent": "pi_NORMALIZED",
|
||||
"type": "payment_intent"
|
||||
},
|
||||
"name": null,
|
||||
"next_invoice_sequence": 1,
|
||||
"object": "customer",
|
||||
"phone": null,
|
||||
"preferred_locales": [],
|
||||
"shipping": null,
|
||||
"tax_exempt": "none",
|
||||
"test_clock": null
|
||||
},
|
||||
"previous_attributes": {
|
||||
"invoice_settings": {
|
||||
"default_payment_method": null
|
||||
"status": "paid",
|
||||
"status_transitions": {
|
||||
"canceled_at": null,
|
||||
"paid_at": 1000000000
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -47,10 +30,10 @@
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"request": {
|
||||
"id": "cancel_downgrade_at_end_of_free_trial--Event.list.1.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
"id": null,
|
||||
"idempotency_key": null
|
||||
},
|
||||
"type": "customer.updated"
|
||||
"type": "invoice_payment.paid"
|
||||
}
|
||||
],
|
||||
"has_more": true,
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 48000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -142,5 +142,5 @@
|
||||
"total_excluding_tax": 12000,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
"total_excluding_tax": 12000,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
],
|
||||
"has_more": false,
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 12000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -172,7 +172,7 @@
|
||||
"id": "customer_has_credit_card_as_default_payment_method--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"pending_webhooks": 2,
|
||||
"request": {
|
||||
"id": "customer_has_credit_card_as_default_payment_method--Event.list.2.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
@@ -180,7 +180,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -202,6 +202,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "customer_has_credit_card_as_default_payment_method--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "customer_has_credit_card_as_default_payment_method--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": "customer_has_credit_card_as_default_payment_method--Event.list.2.json",
|
||||
@@ -251,7 +252,7 @@
|
||||
"type": "payment_intent.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -312,7 +313,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 48000,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "283515",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
@@ -378,7 +379,7 @@
|
||||
"type": "charge.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -547,7 +548,7 @@
|
||||
"type": "invoice.finalized"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -732,7 +733,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -754,6 +755,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "customer_has_credit_card_as_default_payment_method--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "customer_has_credit_card_as_default_payment_method--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -803,7 +805,7 @@
|
||||
"type": "payment_intent.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -984,7 +986,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -999,6 +1001,7 @@
|
||||
"invoice": "customer_has_credit_card_as_default_payment_method--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 48000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
@@ -1030,7 +1033,7 @@
|
||||
"type": "invoiceitem.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1144,7 +1147,7 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
},
|
||||
"id": "customer_has_credit_card_as_default_payment_method--Event.list.2.json",
|
||||
@@ -1158,7 +1161,7 @@
|
||||
"type": "invoice.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1208,7 +1211,7 @@
|
||||
"type": "customer.updated"
|
||||
}
|
||||
],
|
||||
"has_more": false,
|
||||
"has_more": true,
|
||||
"object": "list",
|
||||
"url": "/v1/events"
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -170,7 +170,7 @@
|
||||
"type": "invoice.payment_succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 48000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "iago@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "iago@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -172,7 +172,7 @@
|
||||
"id": "customer_minimum_licenses_for_plan--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"pending_webhooks": 2,
|
||||
"request": {
|
||||
"id": "customer_minimum_licenses_for_plan--Event.list.2.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
@@ -180,7 +180,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -202,6 +202,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "customer_minimum_licenses_for_plan--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "customer_minimum_licenses_for_plan--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": "customer_minimum_licenses_for_plan--Event.list.2.json",
|
||||
@@ -251,7 +252,7 @@
|
||||
"type": "payment_intent.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -312,7 +313,7 @@
|
||||
"payment_method_details": {
|
||||
"card": {
|
||||
"amount_authorized": 72000,
|
||||
"authorization_code": null,
|
||||
"authorization_code": "084938",
|
||||
"brand": "visa",
|
||||
"checks": {
|
||||
"address_line1_check": "pass",
|
||||
@@ -378,7 +379,7 @@
|
||||
"type": "charge.succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -547,7 +548,7 @@
|
||||
"type": "invoice.finalized"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -732,7 +733,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -754,6 +755,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "customer_minimum_licenses_for_plan--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "customer_minimum_licenses_for_plan--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -803,7 +805,7 @@
|
||||
"type": "payment_intent.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -984,7 +986,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -999,6 +1001,7 @@
|
||||
"invoice": "customer_minimum_licenses_for_plan--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 72000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
@@ -1030,7 +1033,7 @@
|
||||
"type": "invoiceitem.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1144,7 +1147,7 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
},
|
||||
"id": "customer_minimum_licenses_for_plan--Event.list.2.json",
|
||||
@@ -1158,7 +1161,7 @@
|
||||
"type": "invoice.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1208,7 +1211,7 @@
|
||||
"type": "customer.updated"
|
||||
}
|
||||
],
|
||||
"has_more": false,
|
||||
"has_more": true,
|
||||
"object": "list",
|
||||
"url": "/v1/events"
|
||||
}
|
||||
|
||||
@@ -1,7 +1,42 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
"amount_paid": 48000,
|
||||
"amount_requested": 48000,
|
||||
"created": 1000000000,
|
||||
"currency": "usd",
|
||||
"id": "customer_minimum_licenses_for_plan--Event.list.3.json",
|
||||
"invoice": "in_NORMALIZED",
|
||||
"is_default": true,
|
||||
"livemode": false,
|
||||
"object": "invoice_payment",
|
||||
"payment": {
|
||||
"payment_intent": "pi_NORMALIZED",
|
||||
"type": "payment_intent"
|
||||
},
|
||||
"status": "paid",
|
||||
"status_transitions": {
|
||||
"canceled_at": null,
|
||||
"paid_at": 1000000000
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "customer_minimum_licenses_for_plan--Event.list.3.json",
|
||||
"livemode": false,
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"request": {
|
||||
"id": null,
|
||||
"idempotency_key": null
|
||||
},
|
||||
"type": "invoice_payment.paid"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -170,7 +205,7 @@
|
||||
"type": "invoice.payment_succeeded"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 72000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 72000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -11,10 +13,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -33,7 +52,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -53,6 +74,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"adaptive_pricing": null,
|
||||
"adaptive_pricing": {
|
||||
"enabled": false
|
||||
},
|
||||
"after_expiration": null,
|
||||
"allow_promotion_codes": null,
|
||||
"amount_subtotal": null,
|
||||
@@ -13,10 +15,27 @@
|
||||
"status": null
|
||||
},
|
||||
"billing_address_collection": "required",
|
||||
"branding_settings": {
|
||||
"background_color": "#ffffff",
|
||||
"border_style": "rounded",
|
||||
"button_color": "#0074d4",
|
||||
"display_name": "Sandbox",
|
||||
"font_family": "default",
|
||||
"icon": {
|
||||
"file": "file_1RCGizRVfKEFJaqcFHPvd6rl",
|
||||
"type": "file"
|
||||
},
|
||||
"logo": {
|
||||
"file": "file_1RCGiyRVfKEFJaqc9ny0K376",
|
||||
"type": "file"
|
||||
}
|
||||
},
|
||||
"cancel_url": "http://zulip.testserver/upgrade/?manual_license_management=false&tier=1",
|
||||
"client_reference_id": null,
|
||||
"client_secret": null,
|
||||
"collected_information": {
|
||||
"business_name": null,
|
||||
"individual_name": null,
|
||||
"shipping_details": null
|
||||
},
|
||||
"consent": null,
|
||||
@@ -35,7 +54,9 @@
|
||||
"customer_creation": null,
|
||||
"customer_details": {
|
||||
"address": null,
|
||||
"business_name": null,
|
||||
"email": "hamlet@zulip.com",
|
||||
"individual_name": null,
|
||||
"name": null,
|
||||
"phone": null,
|
||||
"tax_exempt": null,
|
||||
@@ -55,6 +76,7 @@
|
||||
},
|
||||
"mode": "setup",
|
||||
"object": "checkout.session",
|
||||
"origin_context": null,
|
||||
"payment_intent": null,
|
||||
"payment_link": null,
|
||||
"payment_method_collection": "always",
|
||||
|
||||
@@ -1,154 +1,28 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
"account_country": "US",
|
||||
"account_name": "NORMALIZED",
|
||||
"account_tax_ids": null,
|
||||
"amount_due": 24000,
|
||||
"amount_overpaid": 0,
|
||||
"amount_paid": 0,
|
||||
"amount_remaining": 24000,
|
||||
"amount_shipping": 0,
|
||||
"application": null,
|
||||
"attempt_count": 0,
|
||||
"attempted": false,
|
||||
"auto_advance": true,
|
||||
"automatic_tax": {
|
||||
"disabled_reason": null,
|
||||
"enabled": false,
|
||||
"liability": null,
|
||||
"provider": null,
|
||||
"status": null
|
||||
},
|
||||
"automatically_finalizes_at": null,
|
||||
"billing_reason": "manual",
|
||||
"collection_method": "charge_automatically",
|
||||
"amount_paid": 100000,
|
||||
"amount_requested": 100000,
|
||||
"created": 1000000000,
|
||||
"currency": "usd",
|
||||
"custom_fields": null,
|
||||
"customer": "cus_NORMALIZED",
|
||||
"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,
|
||||
"discounts": [],
|
||||
"due_date": null,
|
||||
"effective_at": 1000000000,
|
||||
"ending_balance": 0,
|
||||
"footer": null,
|
||||
"from_invoice": null,
|
||||
"hosted_invoice_url": "https://invoice.stripe.com/i/acct_NORMALIZED/test_NORMALIZED?s=ap",
|
||||
"id": "downgrade_realm_and_void_open_invoices--Event.list.1.json",
|
||||
"invoice_pdf": "https://pay.stripe.com/invoice/acct_NORMALIZED/test_NORMALIZED/pdf?s=ap",
|
||||
"issuer": {
|
||||
"type": "self"
|
||||
},
|
||||
"last_finalization_error": null,
|
||||
"latest_revision": null,
|
||||
"lines": {
|
||||
"data": [
|
||||
{
|
||||
"amount": 24000,
|
||||
"currency": "usd",
|
||||
"description": "Zulip Cloud Standard - renewal",
|
||||
"discount_amounts": [],
|
||||
"discountable": false,
|
||||
"discounts": [],
|
||||
"id": "downgrade_realm_and_void_open_invoices--Event.list.1.json",
|
||||
"invoice": "downgrade_realm_and_void_open_invoices--Event.list.1.json",
|
||||
"invoice": "in_NORMALIZED",
|
||||
"is_default": true,
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"object": "line_item",
|
||||
"parent": {
|
||||
"invoice_item_details": {
|
||||
"invoice_item": "ii_NORMALIZED",
|
||||
"proration": false,
|
||||
"proration_details": {
|
||||
"credited_items": null
|
||||
"object": "invoice_payment",
|
||||
"payment": {
|
||||
"payment_intent": "pi_NORMALIZED",
|
||||
"type": "payment_intent"
|
||||
},
|
||||
"subscription": null
|
||||
},
|
||||
"subscription_item_details": null,
|
||||
"type": "invoice_item_details"
|
||||
},
|
||||
"period": {
|
||||
"end": 1388631845,
|
||||
"start": 1357095845
|
||||
},
|
||||
"pretax_credit_amounts": [],
|
||||
"pricing": {
|
||||
"price_details": {
|
||||
"price": "price_NORMALIZED",
|
||||
"product": "prod_NORMALIZED"
|
||||
},
|
||||
"type": "price_details",
|
||||
"unit_amount_decimal": "4000"
|
||||
},
|
||||
"quantity": 6,
|
||||
"taxes": []
|
||||
}
|
||||
],
|
||||
"has_more": false,
|
||||
"object": "list",
|
||||
"total_count": 1,
|
||||
"url": "/v1/invoices/downgrade_realm_and_void_open_invoices--Event.list.1.json/lines"
|
||||
},
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"next_payment_attempt": 1000000000,
|
||||
"number": "NORMALIZED",
|
||||
"object": "invoice",
|
||||
"on_behalf_of": null,
|
||||
"parent": 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,
|
||||
"receipt_number": null,
|
||||
"rendering": {
|
||||
"amount_tax_display": null,
|
||||
"pdf": {
|
||||
"page_size": "letter"
|
||||
},
|
||||
"template": null,
|
||||
"template_version": null
|
||||
},
|
||||
"shipping_cost": null,
|
||||
"shipping_details": null,
|
||||
"starting_balance": 0,
|
||||
"statement_descriptor": "Zulip Cloud Standard",
|
||||
"status": "open",
|
||||
"status": "paid",
|
||||
"status_transitions": {
|
||||
"finalized_at": 1000000000,
|
||||
"marked_uncollectible_at": null,
|
||||
"paid_at": null,
|
||||
"voided_at": null
|
||||
},
|
||||
"subtotal": 24000,
|
||||
"subtotal_excluding_tax": 24000,
|
||||
"test_clock": null,
|
||||
"total": 24000,
|
||||
"total_discount_amounts": [],
|
||||
"total_excluding_tax": 24000,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"canceled_at": null,
|
||||
"paid_at": 1000000000
|
||||
}
|
||||
}
|
||||
},
|
||||
"id": "downgrade_realm_and_void_open_invoices--Event.list.1.json",
|
||||
@@ -156,10 +30,10 @@
|
||||
"object": "event",
|
||||
"pending_webhooks": 0,
|
||||
"request": {
|
||||
"id": "downgrade_realm_and_void_open_invoices--Event.list.1.json",
|
||||
"idempotency_key": "00000000-0000-0000-0000-000000000000"
|
||||
"id": null,
|
||||
"idempotency_key": null
|
||||
},
|
||||
"type": "invoice.finalized"
|
||||
"type": "invoice_payment.paid"
|
||||
}
|
||||
],
|
||||
"has_more": true,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -179,7 +179,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -201,6 +201,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "downgrade_realm_and_void_open_invoices--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "downgrade_realm_and_void_open_invoices--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -250,7 +251,7 @@
|
||||
"type": "payment_intent.canceled"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -419,7 +420,7 @@
|
||||
"type": "invoice.finalized"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -605,7 +606,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -627,6 +628,7 @@
|
||||
"currency": "usd",
|
||||
"customer": "downgrade_realm_and_void_open_invoices--Customer.create.1.json",
|
||||
"description": "Payment for Invoice",
|
||||
"excluded_payment_method_types": null,
|
||||
"id": "downgrade_realm_and_void_open_invoices--Event.list.2.json",
|
||||
"last_payment_error": null,
|
||||
"latest_charge": null,
|
||||
@@ -676,7 +678,7 @@
|
||||
"type": "payment_intent.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -857,7 +859,7 @@
|
||||
"type": "invoice.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -872,6 +874,7 @@
|
||||
"invoice": "downgrade_realm_and_void_open_invoices--Event.list.2.json",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 984000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
@@ -903,7 +906,7 @@
|
||||
"type": "invoiceitem.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1017,7 +1020,7 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
},
|
||||
"id": "downgrade_realm_and_void_open_invoices--Event.list.2.json",
|
||||
@@ -1031,7 +1034,7 @@
|
||||
"type": "invoice.created"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
@@ -1081,7 +1084,7 @@
|
||||
"type": "customer.updated"
|
||||
},
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"data": [
|
||||
{
|
||||
"api_version": "2025-04-30.basil",
|
||||
"api_version": "2025-09-30.clover",
|
||||
"created": 1000000000,
|
||||
"data": {
|
||||
"object": {
|
||||
|
||||
@@ -109,5 +109,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 984000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"invoice": "in_NORMALIZED",
|
||||
"livemode": false,
|
||||
"metadata": {},
|
||||
"net_amount": 984000,
|
||||
"object": "invoiceitem",
|
||||
"parent": null,
|
||||
"period": {
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -101,5 +101,5 @@
|
||||
"total_excluding_tax": 0,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
@@ -142,5 +142,5 @@
|
||||
"total_excluding_tax": 10000,
|
||||
"total_pretax_credit_amounts": [],
|
||||
"total_taxes": [],
|
||||
"webhooks_delivered_at": 1000000000
|
||||
"webhooks_delivered_at": null
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user