2021-06-11 14:29:30 +02:00
|
|
|
---
|
|
|
|
http_interactions:
|
|
|
|
- request:
|
|
|
|
method: post
|
2021-09-13 14:25:30 +02:00
|
|
|
uri: https://api.stripe.com/v1/payment_methods
|
2021-06-11 14:29:30 +02:00
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
2021-09-13 14:25:30 +02:00
|
|
|
string: type=card&card[number]=4242424242424242&card[exp_month]=4&card[exp_year]=2022&card[cvc]=314
|
2021-06-11 14:29:30 +02:00
|
|
|
headers:
|
|
|
|
User-Agent:
|
|
|
|
- Stripe/v1 RubyBindings/5.29.0
|
|
|
|
Authorization:
|
|
|
|
- Bearer sk_test_testfaketestfaketestfake
|
|
|
|
Content-Type:
|
|
|
|
- application/x-www-form-urlencoded
|
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
X-Stripe-Client-User-Agent:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"bindings_version":"5.29.0","lang":"ruby","lang_version":"2.6.7 p197 (2021-04-05)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux
|
|
|
|
version 5.14.11-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils)
|
|
|
|
2.36.1) #1 SMP PREEMPT Sun, 10 Oct 2021 00:48:26 +0000","hostname":"Sylvain-desktop"}'
|
2021-06-11 14:29:30 +02:00
|
|
|
Accept-Encoding:
|
|
|
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
|
|
Accept:
|
|
|
|
- "*/*"
|
|
|
|
response:
|
|
|
|
status:
|
|
|
|
code: 200
|
|
|
|
message: OK
|
|
|
|
headers:
|
|
|
|
Server:
|
|
|
|
- nginx
|
|
|
|
Date:
|
2021-10-14 18:20:10 +02:00
|
|
|
- Thu, 14 Oct 2021 15:57:08 GMT
|
2021-06-11 14:29:30 +02:00
|
|
|
Content-Type:
|
|
|
|
- application/json
|
|
|
|
Content-Length:
|
2021-09-13 14:25:30 +02:00
|
|
|
- '934'
|
2021-06-11 14:29:30 +02:00
|
|
|
Connection:
|
|
|
|
- keep-alive
|
|
|
|
Access-Control-Allow-Credentials:
|
|
|
|
- 'true'
|
|
|
|
Access-Control-Allow-Methods:
|
|
|
|
- GET, POST, HEAD, OPTIONS, DELETE
|
|
|
|
Access-Control-Allow-Origin:
|
|
|
|
- "*"
|
|
|
|
Access-Control-Expose-Headers:
|
|
|
|
- Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required
|
|
|
|
Access-Control-Max-Age:
|
|
|
|
- '300'
|
|
|
|
Cache-Control:
|
|
|
|
- no-cache, no-store
|
|
|
|
Request-Id:
|
2021-10-14 18:20:10 +02:00
|
|
|
- req_2Si3MYbjIckWp6
|
2021-06-11 14:29:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
Strict-Transport-Security:
|
|
|
|
- max-age=31556926; includeSubDomains; preload
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
|
|
|
string: |
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "pm_1JkWIq2sOmf47Nz9y8vyE7cz",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "payment_method",
|
|
|
|
"billing_details": {
|
|
|
|
"address": {
|
|
|
|
"city": null,
|
|
|
|
"country": null,
|
|
|
|
"line1": null,
|
|
|
|
"line2": null,
|
|
|
|
"postal_code": null,
|
|
|
|
"state": null
|
|
|
|
},
|
|
|
|
"email": null,
|
|
|
|
"name": null,
|
|
|
|
"phone": null
|
|
|
|
},
|
|
|
|
"card": {
|
|
|
|
"brand": "visa",
|
|
|
|
"checks": {
|
|
|
|
"address_line1_check": null,
|
|
|
|
"address_postal_code_check": null,
|
|
|
|
"cvc_check": "unchecked"
|
|
|
|
},
|
|
|
|
"country": "US",
|
|
|
|
"exp_month": 4,
|
|
|
|
"exp_year": 2022,
|
|
|
|
"fingerprint": "o52jybR7bnmNn6AT",
|
|
|
|
"funding": "credit",
|
|
|
|
"generated_from": null,
|
|
|
|
"last4": "4242",
|
|
|
|
"networks": {
|
|
|
|
"available": [
|
|
|
|
"visa"
|
|
|
|
],
|
|
|
|
"preferred": null
|
|
|
|
},
|
|
|
|
"three_d_secure_usage": {
|
|
|
|
"supported": true
|
|
|
|
},
|
|
|
|
"wallet": null
|
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634227028,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": null,
|
2021-06-11 14:29:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
2021-09-13 14:25:30 +02:00
|
|
|
"type": "card"
|
2021-06-11 14:29:30 +02:00
|
|
|
}
|
2021-10-14 18:20:10 +02:00
|
|
|
recorded_at: Thu, 14 Oct 2021 15:57:08 GMT
|
2021-06-11 14:29:30 +02:00
|
|
|
- request:
|
|
|
|
method: post
|
2021-10-14 18:20:10 +02:00
|
|
|
uri: https://api.stripe.com/v1/payment_methods/pm_1JkWIq2sOmf47Nz9y8vyE7cz/attach
|
2021-06-11 14:29:30 +02:00
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
2021-09-13 14:25:30 +02:00
|
|
|
string: customer=cus_8Di1wjdVktv5kt
|
2021-06-11 14:29:30 +02:00
|
|
|
headers:
|
|
|
|
User-Agent:
|
|
|
|
- Stripe/v1 RubyBindings/5.29.0
|
|
|
|
Authorization:
|
|
|
|
- Bearer sk_test_testfaketestfaketestfake
|
|
|
|
Content-Type:
|
|
|
|
- application/x-www-form-urlencoded
|
|
|
|
X-Stripe-Client-Telemetry:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"last_request_metrics":{"request_id":"req_2Si3MYbjIckWp6","request_duration_ms":770}}'
|
2021-06-11 14:29:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
X-Stripe-Client-User-Agent:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"bindings_version":"5.29.0","lang":"ruby","lang_version":"2.6.7 p197 (2021-04-05)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux
|
|
|
|
version 5.14.11-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils)
|
|
|
|
2.36.1) #1 SMP PREEMPT Sun, 10 Oct 2021 00:48:26 +0000","hostname":"Sylvain-desktop"}'
|
2021-06-11 14:29:30 +02:00
|
|
|
Accept-Encoding:
|
|
|
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
|
|
Accept:
|
|
|
|
- "*/*"
|
|
|
|
response:
|
|
|
|
status:
|
|
|
|
code: 200
|
|
|
|
message: OK
|
|
|
|
headers:
|
|
|
|
Server:
|
|
|
|
- nginx
|
|
|
|
Date:
|
2021-10-14 18:20:10 +02:00
|
|
|
- Thu, 14 Oct 2021 15:57:09 GMT
|
2021-06-11 14:29:30 +02:00
|
|
|
Content-Type:
|
|
|
|
- application/json
|
|
|
|
Content-Length:
|
2021-09-13 14:25:30 +02:00
|
|
|
- '945'
|
2021-06-11 14:29:30 +02:00
|
|
|
Connection:
|
|
|
|
- keep-alive
|
|
|
|
Access-Control-Allow-Credentials:
|
|
|
|
- 'true'
|
|
|
|
Access-Control-Allow-Methods:
|
|
|
|
- GET, POST, HEAD, OPTIONS, DELETE
|
|
|
|
Access-Control-Allow-Origin:
|
|
|
|
- "*"
|
|
|
|
Access-Control-Expose-Headers:
|
|
|
|
- Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required
|
|
|
|
Access-Control-Max-Age:
|
|
|
|
- '300'
|
|
|
|
Cache-Control:
|
|
|
|
- no-cache, no-store
|
|
|
|
Request-Id:
|
2021-10-14 18:20:10 +02:00
|
|
|
- req_yJo2oWFeLPQiKQ
|
2021-06-11 14:29:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
Strict-Transport-Security:
|
|
|
|
- max-age=31556926; includeSubDomains; preload
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
|
|
|
string: |
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "pm_1JkWIq2sOmf47Nz9y8vyE7cz",
|
2021-06-11 14:29:30 +02:00
|
|
|
"object": "payment_method",
|
|
|
|
"billing_details": {
|
|
|
|
"address": {
|
|
|
|
"city": null,
|
|
|
|
"country": null,
|
|
|
|
"line1": null,
|
|
|
|
"line2": null,
|
|
|
|
"postal_code": null,
|
|
|
|
"state": null
|
|
|
|
},
|
|
|
|
"email": null,
|
|
|
|
"name": null,
|
|
|
|
"phone": null
|
|
|
|
},
|
|
|
|
"card": {
|
|
|
|
"brand": "visa",
|
|
|
|
"checks": {
|
|
|
|
"address_line1_check": null,
|
|
|
|
"address_postal_code_check": null,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cvc_check": "pass"
|
2021-06-11 14:29:30 +02:00
|
|
|
},
|
|
|
|
"country": "US",
|
|
|
|
"exp_month": 4,
|
|
|
|
"exp_year": 2022,
|
|
|
|
"fingerprint": "o52jybR7bnmNn6AT",
|
|
|
|
"funding": "credit",
|
|
|
|
"generated_from": null,
|
|
|
|
"last4": "4242",
|
|
|
|
"networks": {
|
|
|
|
"available": [
|
|
|
|
"visa"
|
|
|
|
],
|
|
|
|
"preferred": null
|
|
|
|
},
|
|
|
|
"three_d_secure_usage": {
|
|
|
|
"supported": true
|
|
|
|
},
|
|
|
|
"wallet": null
|
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634227028,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
2021-06-11 14:29:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"type": "card"
|
|
|
|
}
|
2021-10-14 18:20:10 +02:00
|
|
|
recorded_at: Thu, 14 Oct 2021 15:57:09 GMT
|
2021-06-11 14:29:30 +02:00
|
|
|
- request:
|
|
|
|
method: post
|
2021-09-13 14:25:30 +02:00
|
|
|
uri: https://api.stripe.com/v1/customers/cus_8Di1wjdVktv5kt
|
2021-06-11 14:29:30 +02:00
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
2021-10-14 18:20:10 +02:00
|
|
|
string: invoice_settings[default_payment_method]=pm_1JkWIq2sOmf47Nz9y8vyE7cz
|
2021-06-11 14:29:30 +02:00
|
|
|
headers:
|
|
|
|
User-Agent:
|
|
|
|
- Stripe/v1 RubyBindings/5.29.0
|
|
|
|
Authorization:
|
|
|
|
- Bearer sk_test_testfaketestfaketestfake
|
|
|
|
Content-Type:
|
|
|
|
- application/x-www-form-urlencoded
|
|
|
|
X-Stripe-Client-Telemetry:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"last_request_metrics":{"request_id":"req_yJo2oWFeLPQiKQ","request_duration_ms":937}}'
|
2021-06-11 14:29:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
X-Stripe-Client-User-Agent:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"bindings_version":"5.29.0","lang":"ruby","lang_version":"2.6.7 p197 (2021-04-05)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux
|
|
|
|
version 5.14.11-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils)
|
|
|
|
2.36.1) #1 SMP PREEMPT Sun, 10 Oct 2021 00:48:26 +0000","hostname":"Sylvain-desktop"}'
|
2021-06-11 14:29:30 +02:00
|
|
|
Accept-Encoding:
|
|
|
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
|
|
Accept:
|
|
|
|
- "*/*"
|
|
|
|
response:
|
|
|
|
status:
|
|
|
|
code: 200
|
|
|
|
message: OK
|
|
|
|
headers:
|
|
|
|
Server:
|
|
|
|
- nginx
|
|
|
|
Date:
|
2021-10-14 18:20:10 +02:00
|
|
|
- Thu, 14 Oct 2021 15:57:10 GMT
|
2021-06-11 14:29:30 +02:00
|
|
|
Content-Type:
|
|
|
|
- application/json
|
|
|
|
Content-Length:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '49747'
|
2021-06-11 14:29:30 +02:00
|
|
|
Connection:
|
|
|
|
- keep-alive
|
|
|
|
Access-Control-Allow-Credentials:
|
|
|
|
- 'true'
|
|
|
|
Access-Control-Allow-Methods:
|
|
|
|
- GET, POST, HEAD, OPTIONS, DELETE
|
|
|
|
Access-Control-Allow-Origin:
|
|
|
|
- "*"
|
|
|
|
Access-Control-Expose-Headers:
|
|
|
|
- Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required
|
|
|
|
Access-Control-Max-Age:
|
|
|
|
- '300'
|
|
|
|
Cache-Control:
|
|
|
|
- no-cache, no-store
|
|
|
|
Request-Id:
|
2021-10-14 18:20:10 +02:00
|
|
|
- req_CamqGslInNXwJd
|
2021-06-11 14:29:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
Strict-Transport-Security:
|
|
|
|
- max-age=31556926; includeSubDomains; preload
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
|
|
|
string: |
|
|
|
|
{
|
2021-09-13 14:25:30 +02:00
|
|
|
"id": "cus_8Di1wjdVktv5kt",
|
|
|
|
"object": "customer",
|
|
|
|
"account_balance": 0,
|
|
|
|
"address": null,
|
|
|
|
"balance": 0,
|
|
|
|
"created": 1459948888,
|
|
|
|
"currency": "usd",
|
|
|
|
"default_source": "card_1Euc972sOmf47Nz9kex4UjRG",
|
|
|
|
"delinquent": false,
|
|
|
|
"description": "Jean Dupond",
|
|
|
|
"discount": null,
|
|
|
|
"email": "jean.dupond@gmail.com",
|
|
|
|
"invoice_prefix": "C0E661C",
|
|
|
|
"invoice_settings": {
|
|
|
|
"custom_fields": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JkWIq2sOmf47Nz9y8vyE7cz",
|
2021-09-13 14:25:30 +02:00
|
|
|
"footer": null
|
|
|
|
},
|
2021-06-11 14:29:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
2021-09-13 14:25:30 +02:00
|
|
|
"name": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"next_invoice_sequence": 1454,
|
2021-09-13 14:25:30 +02:00
|
|
|
"phone": null,
|
|
|
|
"preferred_locales": [
|
|
|
|
|
2021-06-11 14:29:30 +02:00
|
|
|
],
|
2021-09-13 14:25:30 +02:00
|
|
|
"shipping": null,
|
|
|
|
"sources": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
|
|
|
"id": "card_1Euc972sOmf47Nz9kex4UjRG",
|
|
|
|
"object": "card",
|
|
|
|
"address_city": null,
|
|
|
|
"address_country": null,
|
|
|
|
"address_line1": null,
|
|
|
|
"address_line1_check": null,
|
|
|
|
"address_line2": null,
|
|
|
|
"address_state": null,
|
|
|
|
"address_zip": null,
|
|
|
|
"address_zip_check": null,
|
|
|
|
"brand": "Visa",
|
|
|
|
"country": "US",
|
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"cvc_check": "unchecked",
|
|
|
|
"dynamic_last4": null,
|
|
|
|
"exp_month": 4,
|
|
|
|
"exp_year": 2020,
|
|
|
|
"fingerprint": "o52jybR7bnmNn6AT",
|
|
|
|
"funding": "credit",
|
|
|
|
"last4": "4242",
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"name": null,
|
|
|
|
"tokenization_method": null
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
|
|
|
"url": "/v1/customers/cus_8Di1wjdVktv5kt/sources"
|
|
|
|
},
|
|
|
|
"subscriptions": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_1JkW7C2sOmf47Nz9v1DfTXVk",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1634226305,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1665762304,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1634226305,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226305,
|
|
|
|
"current_period_end": 1636904705,
|
|
|
|
"current_period_start": 1634226305,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JkW772sOmf47Nz9IlBfocG1",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KPKmRh1aVMvlVs",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226306,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkW7B2sOmf47Nz9bktMHJcG",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226305,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkW7B2sOmf47Nz9bktMHJcG",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226305,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_1JkW7C2sOmf47Nz9v1DfTXVk",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_1JkW7C2sOmf47Nz9v1DfTXVk"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1JkW7C2sOmf47Nz9DHI5iyGy",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkW7B2sOmf47Nz9bktMHJcG",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226305,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1634226305,
|
|
|
|
"start_date": 1634226305,
|
|
|
|
"status": "incomplete",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_1JkW4B2sOmf47Nz9H7F8oy4X",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1634226119,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1665762118,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1634226119,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226119,
|
|
|
|
"current_period_end": 1636904519,
|
|
|
|
"current_period_start": 1634226119,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JkW472sOmf47Nz9eDPVcQRR",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KPKjWzNKMgo5Fm",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226120,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkW4A2sOmf47Nz9OWxtnQoG",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226118,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkW4A2sOmf47Nz9OWxtnQoG",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226118,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_1JkW4B2sOmf47Nz9H7F8oy4X",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_1JkW4B2sOmf47Nz9H7F8oy4X"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1JkW4B2sOmf47Nz99kAOQNRU",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkW4A2sOmf47Nz9OWxtnQoG",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634226118,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1634226119,
|
|
|
|
"start_date": 1634226119,
|
|
|
|
"status": "incomplete",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDebRcYreXVUnH",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631532361,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663068360,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631532361,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532361,
|
|
|
|
"current_period_end": 1636802761,
|
|
|
|
"current_period_start": 1634124361,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZDIP2sOmf47Nz9RVtJc1dz",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDebUR1KKDUfV6",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532361,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDIS2sOmf47Nz9jK6fXjAN",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532360,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDIS2sOmf47Nz9jK6fXjAN",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532360,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDebRcYreXVUnH",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDebRcYreXVUnH"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk5cF2sOmf47Nz9UrRCYQQP",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDIS2sOmf47Nz9jK6fXjAN",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532360,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631532361,
|
|
|
|
"start_date": 1631532361,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDeatKq0nLrE5s",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631532298,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663068297,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631532298,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532298,
|
|
|
|
"current_period_end": 1636802698,
|
|
|
|
"current_period_start": 1634124298,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZDHP2sOmf47Nz9SPvppX4K",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDea7Zt4pCFPCd",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532299,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDHR2sOmf47Nz9BWE3ZEvx",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532297,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDHR2sOmf47Nz9BWE3ZEvx",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532297,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDeatKq0nLrE5s",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDeatKq0nLrE5s"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk5bN2sOmf47Nz9YtlYT2cW",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDHR2sOmf47Nz9BWE3ZEvx",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532297,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631532298,
|
|
|
|
"start_date": 1631532298,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDeaVj7yYl0taQ",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631532268,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663068267,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631532268,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532268,
|
|
|
|
"current_period_end": 1636802668,
|
|
|
|
"current_period_start": 1634124268,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZDGv2sOmf47Nz9SM0WLRa7",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDeakx3Jp75roY",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532269,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDGx2sOmf47Nz9nUWex1u2",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532267,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDGx2sOmf47Nz9nUWex1u2",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532267,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDeaVj7yYl0taQ",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDeaVj7yYl0taQ"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk5ab2sOmf47Nz9HGfetsPd",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDGx2sOmf47Nz9nUWex1u2",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631532267,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631532268,
|
|
|
|
"start_date": 1631532268,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDeToJCqy8AUki",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631531879,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663067878,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631531879,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531879,
|
|
|
|
"current_period_end": 1636802279,
|
|
|
|
"current_period_start": 1634123879,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZDAe2sOmf47Nz9bsm9wPFI",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDeT8jHdC6UAxx",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531880,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDAh2sOmf47Nz9yYZ1jglu",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531879,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDAh2sOmf47Nz9yYZ1jglu",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531879,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDeToJCqy8AUki",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDeToJCqy8AUki"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk5Tj2sOmf47Nz94oD4YTbF",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZDAh2sOmf47Nz9yYZ1jglu",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531879,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631531879,
|
|
|
|
"start_date": 1631531879,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDePb9wwv9HEXL",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631531618,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663067617,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631531618,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531618,
|
|
|
|
"current_period_end": 1636802018,
|
|
|
|
"current_period_start": 1634123618,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZD6R2sOmf47Nz9CVbi40LS",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDePymBNRiUzu7",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531619,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZD6T2sOmf47Nz9eBszbfr3",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531617,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZD6T2sOmf47Nz9eBszbfr3",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531617,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDePb9wwv9HEXL",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDePb9wwv9HEXL"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk5Q92sOmf47Nz9EPwy8dVf",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZD6T2sOmf47Nz9eBszbfr3",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631531617,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631531618,
|
|
|
|
"start_date": 1631531618,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDcntUY1yaA3Fc",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631525640,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663061639,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631525640,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631525640,
|
|
|
|
"current_period_end": 1636796040,
|
|
|
|
"current_period_start": 1634117640,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZBY02sOmf47Nz9cujVPxe4",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDcn9Ud8rYiNXU",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631525641,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBY32sOmf47Nz9ifmaJSjX",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631525639,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBY32sOmf47Nz9ifmaJSjX",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631525639,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDcntUY1yaA3Fc",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDcntUY1yaA3Fc"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk3rN2sOmf47Nz9RqBSO0Dg",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBY32sOmf47Nz9ifmaJSjX",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631525639,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631525640,
|
|
|
|
"start_date": 1631525640,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDcYcFzvKIAfxe",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631524709,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663060707,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631524709,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524709,
|
|
|
|
"current_period_end": 1636795109,
|
|
|
|
"current_period_start": 1634116709,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZBIz2sOmf47Nz9if8isgCk",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDcY0GXEJ58GSV",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524709,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBJ22sOmf47Nz9G6GfGajO",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524708,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBJ22sOmf47Nz9G6GfGajO",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524708,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDcYcFzvKIAfxe",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDcYcFzvKIAfxe"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk3cE2sOmf47Nz90M1EaH9U",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBJ22sOmf47Nz9G6GfGajO",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524708,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631524709,
|
|
|
|
"start_date": 1631524709,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
},
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "sub_KDcREVjTNPz3Ew",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription",
|
|
|
|
"application_fee_percent": null,
|
|
|
|
"automatic_tax": {
|
|
|
|
"enabled": false
|
|
|
|
},
|
|
|
|
"billing": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"billing_cycle_anchor": 1631524329,
|
2021-09-13 14:25:30 +02:00
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"cancel_at": 1663060328,
|
2021-09-13 14:25:30 +02:00
|
|
|
"cancel_at_period_end": false,
|
2021-10-14 18:20:10 +02:00
|
|
|
"canceled_at": 1631524329,
|
2021-09-13 14:25:30 +02:00
|
|
|
"collection_method": "charge_automatically",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524329,
|
|
|
|
"current_period_end": 1636794729,
|
|
|
|
"current_period_start": 1634116329,
|
2021-09-13 14:25:30 +02:00
|
|
|
"customer": "cus_8Di1wjdVktv5kt",
|
|
|
|
"days_until_due": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"default_payment_method": "pm_1JZBCs2sOmf47Nz9xLQzqIu9",
|
2021-09-13 14:25:30 +02:00
|
|
|
"default_source": null,
|
|
|
|
"default_tax_rates": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"discount": null,
|
|
|
|
"ended_at": null,
|
|
|
|
"invoice_customer_balance_settings": {
|
|
|
|
"consume_applied_balance_on_void": true
|
|
|
|
},
|
|
|
|
"items": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "si_KDcRvQzhZyE5ZE",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "subscription_item",
|
|
|
|
"billing_thresholds": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524330,
|
2021-09-13 14:25:30 +02:00
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBCu2sOmf47Nz9EE2mabAJ",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524328,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"price": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBCu2sOmf47Nz9EE2mabAJ",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524328,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"subscription": "sub_KDcREVjTNPz3Ew",
|
2021-09-13 14:25:30 +02:00
|
|
|
"tax_rates": [
|
|
|
|
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 1,
|
2021-10-14 18:20:10 +02:00
|
|
|
"url": "/v1/subscription_items?subscription=sub_KDcREVjTNPz3Ew"
|
2021-09-13 14:25:30 +02:00
|
|
|
},
|
2021-10-14 18:20:10 +02:00
|
|
|
"latest_invoice": "in_1Jk3Wo2sOmf47Nz9gt9wsAE7",
|
2021-09-13 14:25:30 +02:00
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"next_pending_invoice_item_invoice": null,
|
|
|
|
"pause_collection": null,
|
|
|
|
"payment_settings": {
|
|
|
|
"payment_method_options": null,
|
|
|
|
"payment_method_types": null
|
|
|
|
},
|
|
|
|
"pending_invoice_item_interval": null,
|
|
|
|
"pending_setup_intent": null,
|
|
|
|
"pending_update": null,
|
|
|
|
"plan": {
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JZBCu2sOmf47Nz9EE2mabAJ",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "plan",
|
|
|
|
"active": true,
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"amount": 9466,
|
|
|
|
"amount_decimal": "9466",
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1631524328,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"livemode": false,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"tiers": null,
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_usage": null,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"quantity": 1,
|
|
|
|
"schedule": null,
|
2021-10-14 18:20:10 +02:00
|
|
|
"start": 1631524329,
|
|
|
|
"start_date": 1631524329,
|
2021-09-13 14:25:30 +02:00
|
|
|
"status": "active",
|
|
|
|
"tax_percent": null,
|
|
|
|
"transfer_data": null,
|
|
|
|
"trial_end": null,
|
|
|
|
"trial_start": null
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"has_more": true,
|
2021-10-14 18:20:10 +02:00
|
|
|
"total_count": 197,
|
2021-09-13 14:25:30 +02:00
|
|
|
"url": "/v1/customers/cus_8Di1wjdVktv5kt/subscriptions"
|
|
|
|
},
|
|
|
|
"tax_exempt": "none",
|
|
|
|
"tax_ids": {
|
|
|
|
"object": "list",
|
|
|
|
"data": [
|
|
|
|
|
|
|
|
],
|
|
|
|
"has_more": false,
|
|
|
|
"total_count": 0,
|
|
|
|
"url": "/v1/customers/cus_8Di1wjdVktv5kt/tax_ids"
|
|
|
|
},
|
|
|
|
"tax_info": null,
|
|
|
|
"tax_info_verification": null
|
|
|
|
}
|
2021-10-14 18:20:10 +02:00
|
|
|
recorded_at: Thu, 14 Oct 2021 15:57:10 GMT
|
2021-09-13 14:25:30 +02:00
|
|
|
- request:
|
|
|
|
method: post
|
|
|
|
uri: https://api.stripe.com/v1/prices
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
|
|
|
string: unit_amount=9466¤cy=usd&product=prod_IZQAhb9nLu4jfN&recurring[interval]=month&recurring[interval_count]=1
|
|
|
|
headers:
|
|
|
|
User-Agent:
|
|
|
|
- Stripe/v1 RubyBindings/5.29.0
|
|
|
|
Authorization:
|
|
|
|
- Bearer sk_test_testfaketestfaketestfake
|
|
|
|
Content-Type:
|
|
|
|
- application/x-www-form-urlencoded
|
|
|
|
X-Stripe-Client-Telemetry:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"last_request_metrics":{"request_id":"req_CamqGslInNXwJd","request_duration_ms":908}}'
|
2021-09-13 14:25:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
X-Stripe-Client-User-Agent:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"bindings_version":"5.29.0","lang":"ruby","lang_version":"2.6.7 p197 (2021-04-05)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux
|
|
|
|
version 5.14.11-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils)
|
|
|
|
2.36.1) #1 SMP PREEMPT Sun, 10 Oct 2021 00:48:26 +0000","hostname":"Sylvain-desktop"}'
|
2021-09-13 14:25:30 +02:00
|
|
|
Accept-Encoding:
|
|
|
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
|
|
Accept:
|
|
|
|
- "*/*"
|
|
|
|
response:
|
|
|
|
status:
|
|
|
|
code: 200
|
|
|
|
message: OK
|
|
|
|
headers:
|
|
|
|
Server:
|
|
|
|
- nginx
|
|
|
|
Date:
|
2021-10-14 18:20:10 +02:00
|
|
|
- Thu, 14 Oct 2021 15:57:11 GMT
|
2021-09-13 14:25:30 +02:00
|
|
|
Content-Type:
|
|
|
|
- application/json
|
|
|
|
Content-Length:
|
|
|
|
- '607'
|
|
|
|
Connection:
|
|
|
|
- keep-alive
|
|
|
|
Access-Control-Allow-Credentials:
|
|
|
|
- 'true'
|
|
|
|
Access-Control-Allow-Methods:
|
|
|
|
- GET, POST, HEAD, OPTIONS, DELETE
|
|
|
|
Access-Control-Allow-Origin:
|
|
|
|
- "*"
|
|
|
|
Access-Control-Expose-Headers:
|
|
|
|
- Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required
|
|
|
|
Access-Control-Max-Age:
|
|
|
|
- '300'
|
|
|
|
Cache-Control:
|
|
|
|
- no-cache, no-store
|
|
|
|
Request-Id:
|
2021-10-14 18:20:10 +02:00
|
|
|
- req_xZyntWng1AmvLZ
|
2021-09-13 14:25:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
Strict-Transport-Security:
|
|
|
|
- max-age=31556926; includeSubDomains; preload
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
|
|
|
string: |
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkWIs2sOmf47Nz9eGVZoz2W",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634227030,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": null,
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": {
|
|
|
|
"aggregate_usage": null,
|
|
|
|
"interval": "month",
|
|
|
|
"interval_count": 1,
|
|
|
|
"trial_period_days": null,
|
|
|
|
"usage_type": "licensed"
|
|
|
|
},
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "recurring",
|
|
|
|
"unit_amount": 9466,
|
|
|
|
"unit_amount_decimal": "9466"
|
|
|
|
}
|
2021-10-14 18:20:10 +02:00
|
|
|
recorded_at: Thu, 14 Oct 2021 15:57:11 GMT
|
2021-09-13 14:25:30 +02:00
|
|
|
- request:
|
|
|
|
method: post
|
|
|
|
uri: https://api.stripe.com/v1/prices
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
|
|
|
string: unit_amount=8¤cy=usd&product=prod_IZQAhb9nLu4jfN&nickname=Price+adjustment+for+payment+schedule+
|
|
|
|
headers:
|
|
|
|
User-Agent:
|
|
|
|
- Stripe/v1 RubyBindings/5.29.0
|
|
|
|
Authorization:
|
|
|
|
- Bearer sk_test_testfaketestfaketestfake
|
|
|
|
Content-Type:
|
|
|
|
- application/x-www-form-urlencoded
|
|
|
|
X-Stripe-Client-Telemetry:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"last_request_metrics":{"request_id":"req_xZyntWng1AmvLZ","request_duration_ms":433}}'
|
2021-09-13 14:25:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
X-Stripe-Client-User-Agent:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"bindings_version":"5.29.0","lang":"ruby","lang_version":"2.6.7 p197 (2021-04-05)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux
|
|
|
|
version 5.14.11-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils)
|
|
|
|
2.36.1) #1 SMP PREEMPT Sun, 10 Oct 2021 00:48:26 +0000","hostname":"Sylvain-desktop"}'
|
2021-09-13 14:25:30 +02:00
|
|
|
Accept-Encoding:
|
|
|
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
|
|
Accept:
|
|
|
|
- "*/*"
|
|
|
|
response:
|
|
|
|
status:
|
|
|
|
code: 200
|
|
|
|
message: OK
|
|
|
|
headers:
|
|
|
|
Server:
|
|
|
|
- nginx
|
|
|
|
Date:
|
2021-10-14 18:20:10 +02:00
|
|
|
- Thu, 14 Oct 2021 15:57:11 GMT
|
2021-09-13 14:25:30 +02:00
|
|
|
Content-Type:
|
|
|
|
- application/json
|
|
|
|
Content-Length:
|
|
|
|
- '495'
|
|
|
|
Connection:
|
|
|
|
- keep-alive
|
|
|
|
Access-Control-Allow-Credentials:
|
|
|
|
- 'true'
|
|
|
|
Access-Control-Allow-Methods:
|
|
|
|
- GET, POST, HEAD, OPTIONS, DELETE
|
|
|
|
Access-Control-Allow-Origin:
|
|
|
|
- "*"
|
|
|
|
Access-Control-Expose-Headers:
|
|
|
|
- Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required
|
|
|
|
Access-Control-Max-Age:
|
|
|
|
- '300'
|
|
|
|
Cache-Control:
|
|
|
|
- no-cache, no-store
|
|
|
|
Request-Id:
|
2021-10-14 18:20:10 +02:00
|
|
|
- req_kMBygOXNmHHf7l
|
2021-09-13 14:25:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
Strict-Transport-Security:
|
|
|
|
- max-age=31556926; includeSubDomains; preload
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
|
|
|
string: |
|
|
|
|
{
|
2021-10-14 18:20:10 +02:00
|
|
|
"id": "price_1JkWIt2sOmf47Nz91SkP3q0C",
|
2021-09-13 14:25:30 +02:00
|
|
|
"object": "price",
|
|
|
|
"active": true,
|
|
|
|
"billing_scheme": "per_unit",
|
2021-10-14 18:20:10 +02:00
|
|
|
"created": 1634227031,
|
2021-09-13 14:25:30 +02:00
|
|
|
"currency": "usd",
|
|
|
|
"livemode": false,
|
|
|
|
"lookup_key": null,
|
|
|
|
"metadata": {
|
|
|
|
},
|
|
|
|
"nickname": "Price adjustment for payment schedule",
|
|
|
|
"product": "prod_IZQAhb9nLu4jfN",
|
|
|
|
"recurring": null,
|
|
|
|
"tax_behavior": "unspecified",
|
|
|
|
"tiers_mode": null,
|
|
|
|
"transform_quantity": null,
|
|
|
|
"type": "one_time",
|
|
|
|
"unit_amount": 8,
|
|
|
|
"unit_amount_decimal": "8"
|
2021-06-11 14:29:30 +02:00
|
|
|
}
|
2021-10-14 18:20:10 +02:00
|
|
|
recorded_at: Thu, 14 Oct 2021 15:57:11 GMT
|
2021-09-13 14:25:30 +02:00
|
|
|
- request:
|
|
|
|
method: post
|
|
|
|
uri: https://api.stripe.com/v1/subscriptions
|
|
|
|
body:
|
|
|
|
encoding: UTF-8
|
2021-10-14 18:20:10 +02:00
|
|
|
string: customer=cus_8Di1wjdVktv5kt&cancel_at=1665763030&add_invoice_items[0][price]=price_1JkWIt2sOmf47Nz91SkP3q0C&items[0][price]=price_1JkWIs2sOmf47Nz9eGVZoz2W&default_payment_method=pm_1JkWIq2sOmf47Nz9y8vyE7cz&expand[0]=latest_invoice.payment_intent
|
2021-09-13 14:25:30 +02:00
|
|
|
headers:
|
|
|
|
User-Agent:
|
|
|
|
- Stripe/v1 RubyBindings/5.29.0
|
|
|
|
Authorization:
|
|
|
|
- Bearer sk_test_testfaketestfaketestfake
|
|
|
|
Content-Type:
|
|
|
|
- application/x-www-form-urlencoded
|
|
|
|
X-Stripe-Client-Telemetry:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"last_request_metrics":{"request_id":"req_kMBygOXNmHHf7l","request_duration_ms":408}}'
|
2021-09-13 14:25:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
X-Stripe-Client-User-Agent:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '{"bindings_version":"5.29.0","lang":"ruby","lang_version":"2.6.7 p197 (2021-04-05)","platform":"x86_64-linux","engine":"ruby","publisher":"stripe","uname":"Linux
|
|
|
|
version 5.14.11-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils)
|
|
|
|
2.36.1) #1 SMP PREEMPT Sun, 10 Oct 2021 00:48:26 +0000","hostname":"Sylvain-desktop"}'
|
2021-09-13 14:25:30 +02:00
|
|
|
Accept-Encoding:
|
|
|
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
|
|
Accept:
|
|
|
|
- "*/*"
|
|
|
|
response:
|
|
|
|
status:
|
|
|
|
code: 200
|
|
|
|
message: OK
|
|
|
|
headers:
|
|
|
|
Server:
|
|
|
|
- nginx
|
|
|
|
Date:
|
2021-10-14 18:20:10 +02:00
|
|
|
- Thu, 14 Oct 2021 15:57:14 GMT
|
2021-09-13 14:25:30 +02:00
|
|
|
Content-Type:
|
|
|
|
- application/json
|
|
|
|
Content-Length:
|
2021-10-14 18:20:10 +02:00
|
|
|
- '15701'
|
2021-09-13 14:25:30 +02:00
|
|
|
Connection:
|
|
|
|
- keep-alive
|
|
|
|
Access-Control-Allow-Credentials:
|
|
|
|
- 'true'
|
|
|
|
Access-Control-Allow-Methods:
|
|
|
|
- GET, POST, HEAD, OPTIONS, DELETE
|
|
|
|
Access-Control-Allow-Origin:
|
|
|
|
- "*"
|
|
|
|
Access-Control-Expose-Headers:
|
|
|
|
- Request-Id, Stripe-Manage-Version, X-Stripe-External-Auth-Required, X-Stripe-Privileged-Session-Required
|
|
|
|
Access-Control-Max-Age:
|
|
|
|
- '300'
|
|
|
|
Cache-Control:
|
|
|
|
- no-cache, no-store
|
|
|
|
Request-Id:
|
2021-10-14 18:20:10 +02:00
|
|
|
- req_9efis0ktvh6il2
|
2021-09-13 14:25:30 +02:00
|
|
|
Stripe-Version:
|
|
|
|
- '2019-08-14'
|
|
|
|
Strict-Transport-Security:
|
|
|
|
- max-age=31556926; includeSubDomains; preload
|
|
|
|
body:
|
|
|
|
encoding: ASCII-8BIT
|
|
|
|
string: !binary |-
|
2021-10-14 18:20:10 +02:00
|
|
|
ewogICJpZCI6ICJzdWJfMUprV0l1MnNPbWY0N056OWJsWjNBZHFBIiwKICAib2JqZWN0IjogInN1YnNjcmlwdGlvbiIsCiAgImFwcGxpY2F0aW9uX2ZlZV9wZXJjZW50IjogbnVsbCwKICAiYXV0b21hdGljX3RheCI6IHsKICAgICJlbmFibGVkIjogZmFsc2UKICB9LAogICJiaWxsaW5nIjogImNoYXJnZV9hdXRvbWF0aWNhbGx5IiwKICAiYmlsbGluZ19jeWNsZV9hbmNob3IiOiAxNjM0MjI3MDMxLAogICJiaWxsaW5nX3RocmVzaG9sZHMiOiBudWxsLAogICJjYW5jZWxfYXQiOiAxNjY1NzYzMDMwLAogICJjYW5jZWxfYXRfcGVyaW9kX2VuZCI6IGZhbHNlLAogICJjYW5jZWxlZF9hdCI6IDE2MzQyMjcwMzEsCiAgImNvbGxlY3Rpb25fbWV0aG9kIjogImNoYXJnZV9hdXRvbWF0aWNhbGx5IiwKICAiY3JlYXRlZCI6IDE2MzQyMjcwMzEsCiAgImN1cnJlbnRfcGVyaW9kX2VuZCI6IDE2MzY5MDU0MzEsCiAgImN1cnJlbnRfcGVyaW9kX3N0YXJ0IjogMTYzNDIyNzAzMSwKICAiY3VzdG9tZXIiOiAiY3VzXzhEaTF3amRWa3R2NWt0IiwKICAiZGF5c191bnRpbF9kdWUiOiBudWxsLAogICJkZWZhdWx0X3BheW1lbnRfbWV0aG9kIjogInBtXzFKa1dJcTJzT21mNDdOejl5OHZ5RTdjeiIsCiAgImRlZmF1bHRfc291cmNlIjogbnVsbCwKICAiZGVmYXVsdF90YXhfcmF0ZXMiOiBbCgogIF0sCiAgImRpc2NvdW50IjogbnVsbCwKICAiZW5kZWRfYXQiOiBudWxsLAogICJpbnZvaWNlX2N1c3RvbWVyX2JhbGFuY2Vfc2V0dGluZ3MiOiB7CiAgICAiY29uc3VtZV9hcHBsaWVkX2JhbGFuY2Vfb25fdm9pZCI6IHRydWUKICB9LAogICJpdGVtcyI6IHsKICAgICJvYmplY3QiOiAibGlzdCIsCiAgICAiZGF0YSI6IFsKICAgICAgewogICAgICAgICJpZCI6ICJzaV9LUEt5TkJZN0R0aDV3ZiIsCiAgICAgICAgIm9iamVjdCI6ICJzdWJzY3JpcHRpb25faXRlbSIsCiAgICAgICAgImJpbGxpbmdfdGhyZXNob2xkcyI6IG51bGwsCiAgICAgICAgImNyZWF0ZWQiOiAxNjM0MjI3MDMyLAogICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICB9LAogICAgICAgICJwbGFuIjogewogICAgICAgICAgImlkIjogInByaWNlXzFKa1dJczJzT21mNDdOejllR1Zab3oyVyIsCiAgICAgICAgICAib2JqZWN0IjogInBsYW4iLAogICAgICAgICAgImFjdGl2ZSI6IHRydWUsCiAgICAgICAgICAiYWdncmVnYXRlX3VzYWdlIjogbnVsbCwKICAgICAgICAgICJhbW91bnQiOiA5NDY2LAogICAgICAgICAgImFtb3VudF9kZWNpbWFsIjogIjk0NjYiLAogICAgICAgICAgImJpbGxpbmdfc2NoZW1lIjogInBlcl91bml0IiwKICAgICAgICAgICJjcmVhdGVkIjogMTYzNDIyNzAzMCwKICAgICAgICAgICJjdXJyZW5jeSI6ICJ1c2QiLAogICAgICAgICAgImludGVydmFsIjogIm1vbnRoIiwKICAgICAgICAgICJpbnRlcnZhbF9jb3VudCI6IDEsCiAgICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9JWlFBaGI5bkx1NGpmTiIsCiAgICAgICAgICAidGllcnMiOiBudWxsLAogICAgICAgICAgInRpZXJzX21vZGUiOiBudWxsLAogICAgICAgICAgInRyYW5zZm9ybV91c2FnZSI6IG51bGwsCiAgICAgICAgICAidHJpYWxfcGVyaW9kX2RheXMiOiBudWxsLAogICAgICAgICAgInVzYWdlX3R5cGUiOiAibGljZW5zZWQiCiAgICAgICAgfSwKICAgICAgICAicHJpY2UiOiB7CiAgICAgICAgICAiaWQiOiAicHJpY2VfMUprV0lzMnNPbWY0N056OWVHVlpvejJXIiwKICAgICAgICAgICJvYmplY3QiOiAicHJpY2UiLAogICAgICAgICAgImFjdGl2ZSI6IHRydWUsCiAgICAgICAgICAiYmlsbGluZ19zY2hlbWUiOiAicGVyX3VuaXQiLAogICAgICAgICAgImNyZWF0ZWQiOiAxNjM0MjI3MDMwLAogICAgICAgICAgImN1cnJlbmN5IjogInVzZCIsCiAgICAgICAgICAibGl2ZW1vZGUiOiBmYWxzZSwKICAgICAgICAgICJsb29rdXBfa2V5IjogbnVsbCwKICAgICAgICAgICJtZXRhZGF0YSI6IHsKICAgICAgICAgIH0sCiAgICAgICAgICAibmlja25hbWUiOiBudWxsLAogICAgICAgICAgInByb2R1Y3QiOiAicHJvZF9JWlFBaGI5bkx1NGpmTiIsCiAgICAgICAgICAicmVjdXJyaW5nIjogewogICAgICAgICAgICAiYWdncmVnYXRlX3VzYWdlIjogbnVsbCwKICAgICAgICAgICAgImludGVydmFsIjogIm1vbnRoIiwKICAgICAgICAgICAgImludGVydmFsX2NvdW50IjogMSwKICAgICAgICAgICAgInRyaWFsX3BlcmlvZF9kYXlzIjogbnVsbCwKICAgICAgICAgICAgInVzYWdlX3R5cGUiOiAibGljZW5zZWQiCiAgICAgICAgICB9LAogICAgICAgICAgInRheF9iZWhhdmlvciI6ICJ1bnNwZWNpZmllZCIsCiAgICAgICAgICAidGllcnNfbW9kZSI6IG51bGwsCiAgICAgICAgICAidHJhbnNmb3JtX3F1YW50aXR5IjogbnVsbCwKICAgICAgICAgICJ0eXBlIjogInJlY3VycmluZyIsCiAgICAgICAgICAidW5pdF9hbW91bnQiOiA5NDY2LAogICAgICAgICAgInVuaXRfYW1vdW50X2RlY2ltYWwiOiAiOTQ2NiIKICAgICAgICB9LAogICAgICAgICJxdWFudGl0eSI6IDEsCiAgICAgICAgInN1YnNjcmlwdGlvbiI6ICJzdWJfMUprV0l1MnNPbWY0N056OWJsWjNBZHFBIiwKICAgICAgICAidGF4X3JhdGVzIjogWwoKICAgICAgICBdCiAgICAgIH0KICAgIF0sCiAgICAiaGFzX21vcmUiOiBmYWxzZSwKICAgICJ0b3RhbF9jb3VudCI6IDEsCiAgICAidXJsIjogIi92MS9zdWJzY3JpcHRpb25faXRlbXM/c3Vic2NyaXB0aW9uPXN1Yl8xSmtXSXUyc09tZjQ3Tno5YmxaM0FkcUEiCiAgfSwKICAibGF0ZXN0X2ludm9pY2UiOiB7CiAgICAiaWQiOiAiaW5fMUprV0l1MnNPbWY0N056OW9iRFd0TmRIIiwKICAgICJvYmplY3QiOiAiaW52b2ljZSIsCiAgICAiYWNjb3VudF9jb3VudHJ5IjogIkZSIiwKICAgICJhY2NvdW50X25hbWUiOiAiU2xlZWRlIiwKICAgICJhY2NvdW50X3RheF9pZHMiOiBudWxsLAogICAgImFtb3VudF9kdWUiOiA5NDc0LAogICAgImFtb3VudF9wYWlkIjogOTQ3NCwKICAgICJhbW91bnRfcmVtYWluaW5nIjogMCw
|
|
|
|
recorded_at: Thu, 14 Oct 2021 15:57:14 GMT
|
2021-06-11 14:29:30 +02:00
|
|
|
recorded_with: VCR 6.0.0
|