-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscriptions.py
4300 lines (3613 loc) · 209 KB
/
subscriptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Any, Dict, List, Union, Iterable, Optional, cast
from datetime import date, datetime
from typing_extensions import Literal
import httpx
from .. import _legacy_response
from ..types import (
subscription_list_params,
subscription_cancel_params,
subscription_create_params,
subscription_update_params,
subscription_fetch_costs_params,
subscription_fetch_usage_params,
subscription_update_trial_params,
subscription_trigger_phase_params,
subscription_fetch_schedule_params,
subscription_price_intervals_params,
subscription_schedule_plan_change_params,
subscription_update_fixed_fee_quantity_params,
subscription_unschedule_fixed_fee_quantity_updates_params,
)
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
from .._utils import (
maybe_transform,
async_maybe_transform,
)
from .._compat import cached_property
from .._resource import SyncAPIResource, AsyncAPIResource
from .._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
from ..pagination import SyncPage, AsyncPage
from .._base_client import AsyncPaginator, make_request_options
from ..types.subscription import Subscription
from ..types.subscription_usage import SubscriptionUsage
from ..types.subscription_cancel_response import SubscriptionCancelResponse
from ..types.subscription_create_response import SubscriptionCreateResponse
from ..types.subscription_fetch_costs_response import SubscriptionFetchCostsResponse
from ..types.subscription_update_trial_response import SubscriptionUpdateTrialResponse
from ..types.subscription_trigger_phase_response import SubscriptionTriggerPhaseResponse
from ..types.subscription_fetch_schedule_response import SubscriptionFetchScheduleResponse
from ..types.subscription_price_intervals_response import SubscriptionPriceIntervalsResponse
from ..types.subscription_schedule_plan_change_response import SubscriptionSchedulePlanChangeResponse
from ..types.subscription_unschedule_cancellation_response import SubscriptionUnscheduleCancellationResponse
from ..types.subscription_update_fixed_fee_quantity_response import SubscriptionUpdateFixedFeeQuantityResponse
from ..types.subscription_unschedule_pending_plan_changes_response import (
SubscriptionUnschedulePendingPlanChangesResponse,
)
from ..types.subscription_unschedule_fixed_fee_quantity_updates_response import (
SubscriptionUnscheduleFixedFeeQuantityUpdatesResponse,
)
__all__ = ["Subscriptions", "AsyncSubscriptions"]
class Subscriptions(SyncAPIResource):
@cached_property
def with_raw_response(self) -> SubscriptionsWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/orbcorp/orb-python#accessing-raw-response-data-eg-headers
"""
return SubscriptionsWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> SubscriptionsWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/orbcorp/orb-python#with_streaming_response
"""
return SubscriptionsWithStreamingResponse(self)
def create(
self,
*,
add_adjustments: Optional[Iterable[subscription_create_params.AddAdjustment]] | NotGiven = NOT_GIVEN,
add_prices: Optional[Iterable[subscription_create_params.AddPrice]] | NotGiven = NOT_GIVEN,
align_billing_with_subscription_start_date: bool | NotGiven = NOT_GIVEN,
auto_collection: Optional[bool] | NotGiven = NOT_GIVEN,
aws_region: Optional[str] | NotGiven = NOT_GIVEN,
billing_cycle_anchor_configuration: Optional[subscription_create_params.BillingCycleAnchorConfiguration]
| NotGiven = NOT_GIVEN,
coupon_redemption_code: Optional[str] | NotGiven = NOT_GIVEN,
credits_overage_rate: Optional[float] | NotGiven = NOT_GIVEN,
customer_id: Optional[str] | NotGiven = NOT_GIVEN,
default_invoice_memo: Optional[str] | NotGiven = NOT_GIVEN,
end_date: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
external_customer_id: Optional[str] | NotGiven = NOT_GIVEN,
external_marketplace: Optional[Literal["google", "aws", "azure"]] | NotGiven = NOT_GIVEN,
external_marketplace_reporting_id: Optional[str] | NotGiven = NOT_GIVEN,
external_plan_id: Optional[str] | NotGiven = NOT_GIVEN,
filter: Optional[str] | NotGiven = NOT_GIVEN,
initial_phase_order: Optional[int] | NotGiven = NOT_GIVEN,
invoicing_threshold: Optional[str] | NotGiven = NOT_GIVEN,
metadata: Optional[Dict[str, Optional[str]]] | NotGiven = NOT_GIVEN,
net_terms: Optional[int] | NotGiven = NOT_GIVEN,
per_credit_overage_amount: Optional[float] | NotGiven = NOT_GIVEN,
plan_id: Optional[str] | NotGiven = NOT_GIVEN,
plan_version_number: Optional[int] | NotGiven = NOT_GIVEN,
price_overrides: Optional[Iterable[object]] | NotGiven = NOT_GIVEN,
remove_adjustments: Optional[Iterable[subscription_create_params.RemoveAdjustment]] | NotGiven = NOT_GIVEN,
remove_prices: Optional[Iterable[subscription_create_params.RemovePrice]] | NotGiven = NOT_GIVEN,
replace_adjustments: Optional[Iterable[subscription_create_params.ReplaceAdjustment]] | NotGiven = NOT_GIVEN,
replace_prices: Optional[Iterable[subscription_create_params.ReplacePrice]] | NotGiven = NOT_GIVEN,
start_date: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
trial_duration_days: Optional[int] | NotGiven = NOT_GIVEN,
usage_customer_ids: Optional[List[str]] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> SubscriptionCreateResponse:
"""A subscription represents the purchase of a plan by a customer.
The customer is
identified by either the `customer_id` or the `external_customer_id`, and
exactly one of these fields must be provided.
By default, subscriptions begin on the day that they're created and renew
automatically for each billing cycle at the cadence that's configured in the
plan definition.
The default configuration for subscriptions in Orb is **In-advance billing** and
**Beginning of month alignment** (see
[Subscription](/core-concepts##subscription) for more details).
In order to change the alignment behavior, Orb also supports billing
subscriptions on the day of the month they are created. If
`align_billing_with_subscription_start_date = true` is specified, subscriptions
have billing cycles that are aligned with their `start_date`. For example, a
subscription that begins on January 15th will have a billing cycle from January
15th to February 15th. Every subsequent billing cycle will continue to start and
invoice on the 15th.
If the "day" value is greater than the number of days in the month, the next
billing cycle will start at the end of the month. For example, if the start_date
is January 31st, the next billing cycle will start on February 28th.
If a customer was created with a currency, Orb only allows subscribing the
customer to a plan with a matching `invoicing_currency`. If the customer does
not have a currency set, on subscription creation, we set the customer's
currency to be the `invoicing_currency` of the plan.
## Customize your customer's subscriptions
Prices and adjustments in a plan can be added, removed, or replaced for the
subscription being created. This is useful when a customer has prices that
differ from the default prices for a specific plan.
<Note>
This feature is only available for accounts that have migrated to Subscription Overrides Version 2. You can find your
Subscription Overrides Version at the bottom of your [Plans page](https://app.withorb.com/plans)
</Note>
### Adding Prices
To add prices, provide a list of objects with the key `add_prices`. An object in
the list must specify an existing add-on price with a `price_id` or
`external_price_id` field, or create a new add-on price by including an object
with the key `price`, identical to what would be used in the request body for
the [create price endpoint](/api-reference/price/create-price). See the
[Price resource](/product-catalog/price-configuration) for the specification of
different price model configurations possible in this object.
If the plan has phases, each object in the list must include a number with
`plan_phase_order` key to indicate which phase the price should be added to.
An object in the list can specify an optional `start_date` and optional
`end_date`. This is equivalent to creating a price interval with the
[add/edit price intervals endpoint](/api-reference/price-interval/add-or-edit-price-intervals).
If unspecified, the start or end date of the phase or subscription will be used.
An object in the list can specify an optional `minimum_amount`,
`maximum_amount`, or `discounts`. This will create adjustments which apply only
to this price.
Additionally, an object in the list can specify an optional `reference_id`. This
ID can be used to reference this price when
[adding an adjustment](#adding-adjustments) in the same API call. However the ID
is _transient_ and cannot be used to refer to the price in future API calls.
### Removing Prices
To remove prices, provide a list of objects with the key `remove_prices`. An
object in the list must specify a plan price with either a `price_id` or
`external_price_id` field.
### Replacing Prices
To replace prices, provide a list of objects with the key `replace_prices`. An
object in the list must specify a plan price to replace with the
`replaces_price_id` key, and it must specify a price to replace it with by
either referencing an existing add-on price with a `price_id` or
`external_price_id` field, or by creating a new add-on price by including an
object with the key `price`, identical to what would be used in the request body
for the [create price endpoint](/api-reference/price/create-price). See the
[Price resource](/product-catalog/price-configuration) for the specification of
different price model configurations possible in this object.
For fixed fees, an object in the list can supply a `fixed_price_quantity`
instead of a `price`, `price_id`, or `external_price_id` field. This will update
only the quantity for the price, similar to the
[Update price quantity](/api-reference/subscription/update-price-quantity)
endpoint.
The replacement price will have the same phase, if applicable, and the same
start and end dates as the price it replaces.
An object in the list can specify an optional `minimum_amount`,
`maximum_amount`, or `discounts`. This will create adjustments which apply only
to this price.
Additionally, an object in the list can specify an optional `reference_id`. This
ID can be used to reference the replacement price when
[adding an adjustment](#adding-adjustments) in the same API call. However the ID
is _transient_ and cannot be used to refer to the price in future API calls.
### Adding adjustments
To add adjustments, provide a list of objects with the key `add_adjustments`. An
object in the list must include an object with the key `adjustment`, identical
to the adjustment object in the
[add/edit price intervals endpoint](/api-reference/price-interval/add-or-edit-price-intervals).
If the plan has phases, each object in the list must include a number with
`plan_phase_order` key to indicate which phase the adjustment should be added
to.
An object in the list can specify an optional `start_date` and optional
`end_date`. If unspecified, the start or end date of the phase or subscription
will be used.
### Removing adjustments
To remove adjustments, provide a list of objects with the key
`remove_adjustments`. An object in the list must include a key, `adjustment_id`,
with the ID of the adjustment to be removed.
### Replacing adjustments
To replace adjustments, provide a list of objects with the key
`replace_adjustments`. An object in the list must specify a plan adjustment to
replace with the `replaces_adjustment_id` key, and it must specify an adjustment
to replace it with by including an object with the key `adjustment`, identical
to the adjustment object in the
[add/edit price intervals endpoint](/api-reference/price-interval/add-or-edit-price-intervals).
The replacement adjustment will have the same phase, if applicable, and the same
start and end dates as the adjustment it replaces.
## Price overrides (DEPRECATED)
<Note>
Price overrides are being phased out in favor adding/removing/replacing prices. (See
[Customize your customer's subscriptions](/api-reference/subscription/create-subscription))
</Note>
Price overrides are used to update some or all prices in a plan for the specific
subscription being created. This is useful when a new customer has negotiated a
rate that is unique to the customer.
To override prices, provide a list of objects with the key `price_overrides`.
The price object in the list of overrides is expected to contain the existing
price id, the `model_type` and configuration. (See the
[Price resource](/product-catalog/price-configuration) for the specification of
different price model configurations.) The numerical values can be updated, but
the billable metric, cadence, type, and name of a price can not be overridden.
### Maximums and Minimums
Minimums and maximums, much like price overrides, can be useful when a new
customer has negotiated a new or different minimum or maximum spend cap than the
default for a given price. If one exists for a price and null is provided for
the minimum/maximum override on creation, then there will be no minimum/maximum
on the new subscription. If no value is provided, then the default price maximum
or minimum is used.
To add a minimum for a specific price, add `minimum_amount` to the specific
price in the `price_overrides` object.
To add a maximum for a specific price, add `maximum_amount` to the specific
price in the `price_overrides` object.
### Minimum override example
Price minimum override example:
```json
{
...
"id": "price_id",
"model_type": "unit",
"unit_config": {
"unit_amount": "0.50"
},
"minimum_amount": "100.00"
...
}
```
Removing an existing minimum example
```json
{
...
"id": "price_id",
"model_type": "unit",
"unit_config": {
"unit_amount": "0.50"
},
"minimum_amount": null
...
}
```
### Discounts
Discounts, like price overrides, can be useful when a new customer has
negotiated a new or different discount than the default for a price. If a
discount exists for a price and a null discount is provided on creation, then
there will be no discount on the new subscription.
To add a discount for a specific price, add `discount` to the price in the
`price_overrides` object. Discount should be a dictionary of the format:
```ts
{
"discount_type": "amount" | "percentage" | "usage",
"amount_discount": string,
"percentage_discount": string,
"usage_discount": string
}
```
where either `amount_discount`, `percentage_discount`, or `usage_discount` is
provided.
Price discount example
```json
{
...
"id": "price_id",
"model_type": "unit",
"unit_config": {
"unit_amount": "0.50"
},
"discount": {"discount_type": "amount", "amount_discount": "175"},
}
```
Removing an existing discount example
```json
{
"customer_id": "customer_id",
"plan_id": "plan_id",
"discount": null,
"price_overrides": [ ... ]
...
}
```
## Threshold Billing
Orb supports invoicing for a subscription when a preconfigured usage threshold
is hit. To enable threshold billing, pass in an `invoicing_threshold`, which is
specified in the subscription's invoicing currency, when creating a
subscription. E.g. pass in `10.00` to issue an invoice when usage amounts hit
$10.00 for a subscription that invoices in USD.
Args:
add_adjustments: Additional adjustments to be added to the subscription. (Only available for
accounts that have migrated off of legacy subscription overrides)
add_prices: Additional prices to be added to the subscription. (Only available for accounts
that have migrated off of legacy subscription overrides)
auto_collection: Determines whether issued invoices for this subscription will automatically be
charged with the saved payment method on the due date. If not specified, this
defaults to the behavior configured for this customer.
coupon_redemption_code: Redemption code to be used for this subscription. If the coupon cannot be found
by its redemption code, or cannot be redeemed, an error response will be
returned and the subscription creation or plan change will not be scheduled.
default_invoice_memo: Determines the default memo on this subscription's invoices. Note that if this
is not provided, it is determined by the plan configuration.
external_plan_id: The external_plan_id of the plan that the given subscription should be switched
to. Note that either this property or `plan_id` must be specified.
filter: An additional filter to apply to usage queries. This filter must be expressed as
a boolean
[computed property](/extensibility/advanced-metrics#computed-properties). If
null, usage queries will not include any additional filter.
initial_phase_order: The phase of the plan to start with
invoicing_threshold: When this subscription's accrued usage reaches this threshold, an invoice will
be issued for the subscription. If not specified, invoices will only be issued
at the end of the billing period.
metadata: User-specified key/value pairs for the resource. Individual keys can be removed
by setting the value to `null`, and the entire metadata mapping can be cleared
by setting `metadata` to `null`.
net_terms: The net terms determines the difference between the invoice date and the issue
date for the invoice. If you intend the invoice to be due on issue, set this
to 0. If not provided, this defaults to the value specified in the plan.
plan_id: The plan that the given subscription should be switched to. Note that either
this property or `external_plan_id` must be specified.
plan_version_number: Specifies which version of the plan to subscribe to. If null, the default
version will be used.
price_overrides: Optionally provide a list of overrides for prices on the plan
remove_adjustments: Plan adjustments to be removed from the subscription. (Only available for
accounts that have migrated off of legacy subscription overrides)
remove_prices: Plan prices to be removed from the subscription. (Only available for accounts
that have migrated off of legacy subscription overrides)
replace_adjustments: Plan adjustments to be replaced with additional adjustments on the subscription.
(Only available for accounts that have migrated off of legacy subscription
overrides)
replace_prices: Plan prices to be replaced with additional prices on the subscription. (Only
available for accounts that have migrated off of legacy subscription overrides)
trial_duration_days: The duration of the trial period in days. If not provided, this defaults to the
value specified in the plan. If `0` is provided, the trial on the plan will be
skipped.
usage_customer_ids: A list of customer IDs whose usage events will be aggregated and billed under
this subscription. By default, a subscription only considers usage events
associated with its attached customer's customer_id. When usage_customer_ids is
provided, the subscription includes usage events from the specified customers
only. Provided usage_customer_ids must be either the customer for this
subscription itself, or any of that customer's children.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
return self._post(
"/subscriptions",
body=maybe_transform(
{
"add_adjustments": add_adjustments,
"add_prices": add_prices,
"align_billing_with_subscription_start_date": align_billing_with_subscription_start_date,
"auto_collection": auto_collection,
"aws_region": aws_region,
"billing_cycle_anchor_configuration": billing_cycle_anchor_configuration,
"coupon_redemption_code": coupon_redemption_code,
"credits_overage_rate": credits_overage_rate,
"customer_id": customer_id,
"default_invoice_memo": default_invoice_memo,
"end_date": end_date,
"external_customer_id": external_customer_id,
"external_marketplace": external_marketplace,
"external_marketplace_reporting_id": external_marketplace_reporting_id,
"external_plan_id": external_plan_id,
"filter": filter,
"initial_phase_order": initial_phase_order,
"invoicing_threshold": invoicing_threshold,
"metadata": metadata,
"net_terms": net_terms,
"per_credit_overage_amount": per_credit_overage_amount,
"plan_id": plan_id,
"plan_version_number": plan_version_number,
"price_overrides": price_overrides,
"remove_adjustments": remove_adjustments,
"remove_prices": remove_prices,
"replace_adjustments": replace_adjustments,
"replace_prices": replace_prices,
"start_date": start_date,
"trial_duration_days": trial_duration_days,
"usage_customer_ids": usage_customer_ids,
},
subscription_create_params.SubscriptionCreateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=SubscriptionCreateResponse,
)
def update(
self,
subscription_id: str,
*,
auto_collection: Optional[bool] | NotGiven = NOT_GIVEN,
default_invoice_memo: Optional[str] | NotGiven = NOT_GIVEN,
invoicing_threshold: Optional[str] | NotGiven = NOT_GIVEN,
metadata: Optional[Dict[str, Optional[str]]] | NotGiven = NOT_GIVEN,
net_terms: Optional[int] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> Subscription:
"""
This endpoint can be used to update the `metadata`, `net terms`,
`auto_collection`, `invoicing_threshold`, and `default_invoice_memo` properties
on a subscription.
Args:
auto_collection: Determines whether issued invoices for this subscription will automatically be
charged with the saved payment method on the due date. This property defaults to
the plan's behavior.
default_invoice_memo: Determines the default memo on this subscription's invoices. Note that if this
is not provided, it is determined by the plan configuration.
invoicing_threshold: When this subscription's accrued usage reaches this threshold, an invoice will
be issued for the subscription. If not specified, invoices will only be issued
at the end of the billing period.
metadata: User-specified key/value pairs for the resource. Individual keys can be removed
by setting the value to `null`, and the entire metadata mapping can be cleared
by setting `metadata` to `null`.
net_terms: Determines the difference between the invoice issue date for subscription
invoices as the date that they are due. A value of `0` here represents that the
invoice is due on issue, whereas a value of `30` represents that the customer
has a month to pay the invoice.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not subscription_id:
raise ValueError(f"Expected a non-empty value for `subscription_id` but received {subscription_id!r}")
return self._put(
f"/subscriptions/{subscription_id}",
body=maybe_transform(
{
"auto_collection": auto_collection,
"default_invoice_memo": default_invoice_memo,
"invoicing_threshold": invoicing_threshold,
"metadata": metadata,
"net_terms": net_terms,
},
subscription_update_params.SubscriptionUpdateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=Subscription,
)
def list(
self,
*,
created_at_gt: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
created_at_gte: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
created_at_lt: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
created_at_lte: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
cursor: Optional[str] | NotGiven = NOT_GIVEN,
customer_id: Optional[List[str]] | NotGiven = NOT_GIVEN,
external_customer_id: Optional[List[str]] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
status: Optional[Literal["active", "ended", "upcoming"]] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SyncPage[Subscription]:
"""
This endpoint returns a list of all subscriptions for an account as a
[paginated](/api-reference/pagination) list, ordered starting from the most
recently created subscription. For a full discussion of the subscription
resource, see [Subscription](/core-concepts##subscription).
Subscriptions can be filtered for a specific customer by using either the
customer_id or external_customer_id query parameters. To filter subscriptions
for multiple customers, use the customer_id[] or external_customer_id[] query
parameters.
Args:
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
from the initial request.
limit: The number of items to fetch. Defaults to 20.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
return self._get_api_list(
"/subscriptions",
page=SyncPage[Subscription],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"created_at_gt": created_at_gt,
"created_at_gte": created_at_gte,
"created_at_lt": created_at_lt,
"created_at_lte": created_at_lte,
"cursor": cursor,
"customer_id": customer_id,
"external_customer_id": external_customer_id,
"limit": limit,
"status": status,
},
subscription_list_params.SubscriptionListParams,
),
),
model=Subscription,
)
def cancel(
self,
subscription_id: str,
*,
cancel_option: Literal["end_of_subscription_term", "immediate", "requested_date"],
allow_invoice_credit_or_void: Optional[bool] | NotGiven = NOT_GIVEN,
cancellation_date: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
idempotency_key: str | None = None,
) -> SubscriptionCancelResponse:
"""This endpoint can be used to cancel an existing subscription.
It returns the
serialized subscription object with an `end_date` parameter that signifies when
the subscription will transition to an ended state.
The body parameter `cancel_option` determines the cancellation behavior. Orb
supports three cancellation options:
- `end_of_subscription_term`: stops the subscription from auto-renewing.
Subscriptions that have been cancelled with this option can still incur
charges for the remainder of their term:
- Issuing this cancellation request for a monthly subscription will keep the
subscription active until the start of the subsequent month, and potentially
issue an invoice for any usage charges incurred in the intervening period.
- Issuing this cancellation request for a quarterly subscription will keep the
subscription active until the end of the quarter and potentially issue an
invoice for any usage charges incurred in the intervening period.
- Issuing this cancellation request for a yearly subscription will keep the
subscription active for the full year. For example, a yearly subscription
starting on 2021-11-01 and cancelled on 2021-12-08 will remain active until
2022-11-01 and potentially issue charges in the intervening months for any
recurring monthly usage charges in its plan.
- **Note**: If a subscription's plan contains prices with difference cadences,
the end of term date will be determined by the largest cadence value. For
example, cancelling end of term for a subscription with a quarterly fixed
fee with a monthly usage fee will result in the subscription ending at the
end of the quarter.
- `immediate`: ends the subscription immediately, setting the `end_date` to the
current time:
- Subscriptions that have been cancelled with this option will be invoiced
immediately. This invoice will include any usage fees incurred in the
billing period up to the cancellation, along with any prorated recurring
fees for the billing period, if applicable.
- **Note**: If the subscription has a recurring fee that was paid in-advance,
the prorated amount for the remaining time period will be added to the
[customer's balance](list-balance-transactions) upon immediate cancellation.
However, if the customer is ineligible to use the customer balance, the
subscription cannot be cancelled immediately.
- `requested_date`: ends the subscription on a specified date, which requires a
`cancellation_date` to be passed in. If no timezone is provided, the
customer's timezone is used. For example, a subscription starting on January
1st with a monthly price can be set to be cancelled on the first of any month
after January 1st (e.g. March 1st, April 1st, May 1st). A subscription with
multiple prices with different cadences defines the "term" to be the highest
cadence of the prices.
Upcoming subscriptions are only eligible for immediate cancellation, which will
set the `end_date` equal to the `start_date` upon cancellation.
## Backdated cancellations
Orb allows you to cancel a subscription in the past as long as there are no paid
invoices between the `requested_date` and the current time. If the cancellation
is after the latest issued invoice, Orb will generate a balance refund for the
current period. If the cancellation is before the most recently issued invoice,
Orb will void the intervening invoice and generate a new one based on the new
dates for the subscription. See the section on
[cancellation behaviors](/product-catalog/creating-subscriptions#cancellation-behaviors).
Args:
cancel_option: Determines the timing of subscription cancellation
allow_invoice_credit_or_void: If false, this request will fail if it would void an issued invoice or create a
credit note. Consider using this as a safety mechanism if you do not expect
existing invoices to be changed.
cancellation_date: The date that the cancellation should take effect. This parameter can only be
passed if the `cancel_option` is `requested_date`.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
idempotency_key: Specify a custom idempotency key for this request
"""
if not subscription_id:
raise ValueError(f"Expected a non-empty value for `subscription_id` but received {subscription_id!r}")
return self._post(
f"/subscriptions/{subscription_id}/cancel",
body=maybe_transform(
{
"cancel_option": cancel_option,
"allow_invoice_credit_or_void": allow_invoice_credit_or_void,
"cancellation_date": cancellation_date,
},
subscription_cancel_params.SubscriptionCancelParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
idempotency_key=idempotency_key,
),
cast_to=SubscriptionCancelResponse,
)
def fetch(
self,
subscription_id: str,
*,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> Subscription:
"""
This endpoint is used to fetch a [Subscription](/core-concepts##subscription)
given an identifier.
Args:
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not subscription_id:
raise ValueError(f"Expected a non-empty value for `subscription_id` but received {subscription_id!r}")
return self._get(
f"/subscriptions/{subscription_id}",
options=make_request_options(
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
),
cast_to=Subscription,
)
def fetch_costs(
self,
subscription_id: str,
*,
currency: Optional[str] | NotGiven = NOT_GIVEN,
timeframe_end: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
timeframe_start: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
view_mode: Optional[Literal["periodic", "cumulative"]] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SubscriptionFetchCostsResponse:
"""
This endpoint is used to fetch a day-by-day snapshot of a subscription's costs
in Orb, calculated by applying pricing information to the underlying usage (see
the [subscription usage endpoint](fetch-subscription-usage) to fetch usage per
metric, in usage units rather than a currency).
The semantics of this endpoint exactly mirror those of
[fetching a customer's costs](fetch-customer-costs). Use this endpoint to limit
your analysis of costs to a specific subscription for the customer (e.g. to
de-aggregate costs when a customer's subscription has started and stopped on the
same day).
Args:
currency: The currency or custom pricing unit to use.
timeframe_end: Costs returned are exclusive of `timeframe_end`.
timeframe_start: Costs returned are inclusive of `timeframe_start`.
view_mode: Controls whether Orb returns cumulative costs since the start of the billing
period, or incremental day-by-day costs. If your customer has minimums or
discounts, it's strongly recommended that you use the default cumulative
behavior.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not subscription_id:
raise ValueError(f"Expected a non-empty value for `subscription_id` but received {subscription_id!r}")
return self._get(
f"/subscriptions/{subscription_id}/costs",
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"currency": currency,
"timeframe_end": timeframe_end,
"timeframe_start": timeframe_start,
"view_mode": view_mode,
},
subscription_fetch_costs_params.SubscriptionFetchCostsParams,
),
),
cast_to=SubscriptionFetchCostsResponse,
)
def fetch_schedule(
self,
subscription_id: str,
*,
cursor: Optional[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
start_date_gt: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
start_date_gte: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
start_date_lt: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
start_date_lte: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SyncPage[SubscriptionFetchScheduleResponse]:
"""
This endpoint returns a [paginated](/api-reference/pagination) list of all plans
associated with a subscription along with their start and end dates. This list
contains the subscription's initial plan along with past and future plan
changes.
Args:
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
from the initial request.
limit: The number of items to fetch. Defaults to 20.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not subscription_id:
raise ValueError(f"Expected a non-empty value for `subscription_id` but received {subscription_id!r}")
return self._get_api_list(
f"/subscriptions/{subscription_id}/schedule",
page=SyncPage[SubscriptionFetchScheduleResponse],
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform(
{
"cursor": cursor,
"limit": limit,
"start_date_gt": start_date_gt,
"start_date_gte": start_date_gte,
"start_date_lt": start_date_lt,
"start_date_lte": start_date_lte,
},
subscription_fetch_schedule_params.SubscriptionFetchScheduleParams,
),
),
model=SubscriptionFetchScheduleResponse,
)
def fetch_usage(
self,
subscription_id: str,
*,
billable_metric_id: Optional[str] | NotGiven = NOT_GIVEN,
first_dimension_key: Optional[str] | NotGiven = NOT_GIVEN,
first_dimension_value: Optional[str] | NotGiven = NOT_GIVEN,
granularity: Optional[Literal["day"]] | NotGiven = NOT_GIVEN,
group_by: Optional[str] | NotGiven = NOT_GIVEN,
second_dimension_key: Optional[str] | NotGiven = NOT_GIVEN,
second_dimension_value: Optional[str] | NotGiven = NOT_GIVEN,
timeframe_end: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
timeframe_start: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
view_mode: Optional[Literal["periodic", "cumulative"]] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> SubscriptionUsage:
"""This endpoint is used to fetch a subscription's usage in Orb.
Especially when
combined with optional query parameters, this endpoint is a powerful way to
build visualizations on top of Orb's event data and metrics.
With no query parameters specified, this endpoint returns usage for the
subscription's _current billing period_ across each billable metric that
participates in the subscription. Usage quantities returned are the result of
evaluating the metric definition for the entirety of the customer's billing
period.
### Default response shape
Orb returns a `data` array with an object corresponding to each billable metric.
Nested within this object is a `usage` array which has a `quantity` value and a
corresponding `timeframe_start` and `timeframe_end`. The `quantity` value
represents the calculated usage value for the billable metric over the specified
timeframe (inclusive of the `timeframe_start` timestamp and exclusive of the
`timeframe_end` timestamp).
Orb will include _every_ window in the response starting from the beginning of
the billing period, even when there were no events (and therefore no usage) in
the window. This increases the size of the response but prevents the caller from
filling in gaps and handling cumbersome time-based logic.
The query parameters in this endpoint serve to override this behavior and
provide some key functionality, as listed below. Note that this functionality
can also be used _in conjunction_ with each other, e.g. to display grouped usage
on a custom timeframe.
## Custom timeframe
In order to view usage for a custom timeframe rather than the current billing
period, specify a `timeframe_start` and `timeframe_end`. This will calculate
quantities for usage incurred between timeframe_start (inclusive) and