Kontorion Billing API
The Kontorion Billing API provides a complete platform for subscription and usage-based billing. Manage customers, products, plans, and prices. Create and lifecycle subscriptions with add-ons, groups, and scheduled changes. Generate invoices automatically or manually. Track usage events and meter against committed use plans. Process payments through Stripe and GoCardless. Automate billing with recurring schedules, dunning policies, and promotion campaigns.
Base URL: https://api.kontorion.eu/v1
Authentication: All requests require an Authorization: Bearer ... header. See Authentication for details.
Tags
Customers
A customer represents a person or company that purchases your products and services. Customers are the foundation of your billing relationship - every subscription, invoice, and payment is tied to a customer record.
Each customer has a billing profile including address, preferred currency, tax identifiers, and custom fields. Customers can be tagged for segmentation, merged when duplicates are discovered, and validated through identity verification providers.
Key concepts:
- External ID - your internal identifier for this customer, used for idempotent upserts
- Billing model - controls how charges are calculated (prepaid, postpaid, or hybrid)
- Customer type -
individualorcompany, affects tax treatment and invoice formatting - Metadata - arbitrary key-value pairs for your own bookkeeping
Subscriptions
A subscription is a contract between your business and a customer - it defines which plan they're on, what billing period applies, and how charges are generated over time.
Subscriptions progress through a defined lifecycle:
pending → trialing → active → past_due → canceled or expired. Each transition can trigger invoicing, proration, or dunning actions.
Key concepts:
- Plan - the pricing template attached to this subscription
- Billing period -
month,quarter, oryear- determines invoice frequency - Trial - an optional free period before charges begin
- Auto-renew - whether the subscription renews automatically at period end
- Billing anchor day - the day of month that billing cycles align to (e.g., the 1st or 15th)
- Proration - when a subscription changes mid-cycle, charges are adjusted proportionally
- Items - the specific products and quantities included in this subscription
Invoices
An invoice is a formal request for payment sent to a customer. Invoices are generated automatically at the end of each billing period, or manually for one-off charges, credits, and adjustments.
The invoice lifecycle is:
draft → finalized → sent → paid (or void / uncollectible). Draft invoices can be edited; finalized invoices are immutable and receive a sequential invoice number.
Key concepts:
- Invoice type -
subscription(recurring),one_off(manual), orcredit_note(refund/adjustment) - Line items - individual charges with product, quantity, amount, and tax breakdown
- Credit notes - partial or full reversals of a finalized invoice
- PDF export - generate a formatted PDF for download or email delivery
- XRechnung - EU-compliant electronic invoice format (XML) for B2G billing
- Buyer reference - PO number or reference that appears on the invoice for the customer's records
Plans
A plan is a reusable pricing template that defines what a customer gets and how they're charged. Plans combine one or more products with pricing rules and are attached to subscriptions.
Plans support versioning - when you update a plan's pricing or product lineup, existing subscribers stay on their current version until explicitly migrated. This lets you iterate on pricing without disrupting active subscriptions.
Key concepts:
- Products - the items included in this plan, each with optional included quantities and rollover rules
- Versions - immutable snapshots of the plan configuration at a point in time
- Publishing - makes a draft plan version available for new subscriptions
- Migration - moves existing subscribers from one plan version to another, with configurable proration
Wallets
A wallet is a prepaid credit balance associated with a customer. Wallets allow customers to pre-fund their account, receive credits (promotional or otherwise), and have charges automatically deducted from their balance before falling back to a payment method.
Each customer has a primary wallet created automatically, and can have additional wallets in different currencies.
Key operations:
- Credit - add funds to the wallet (from a payment, promotion, or manual adjustment)
- Debit - remove funds (applied automatically during invoicing, or manually)
- Hold - reserve an amount for a pending charge (released or captured later)
- Transfer - move funds between wallets (e.g., currency conversion)
- Adjust - correct the balance without a formal credit/debit (e.g., migration adjustment)
Products
A product represents a billable item in your catalog - a feature, service, or resource that customers pay for. Products are the building blocks of plans and appear as line items on invoices.
Products can be recurring (charged every billing period), usage-based (metered and charged based on consumption), or one-time (charged once at purchase).
Key concepts:
- Product type -
recurring,usage,one_time, orseat- determines how charges are calculated - External ID - your internal SKU or product code for integration with other systems
- Cost tracking - named COGS entries via
costs[](per-product or org-scoped) for margin analysis - Dependencies -
requires_product_idsenforces that certain products must be purchased together
Prices
A price defines the monetary amount charged for a product within a plan. Prices support multiple currencies, billing periods, and pricing models - from simple flat fees to complex tiered and formula-based calculations.
Pricing models:
- Flat - a fixed amount per billing period (e.g., $49/month)
- Per-unit - a fixed amount multiplied by quantity (e.g., $10/seat)
- Tiered - different rates at different volume thresholds (e.g., $0.10/unit for 0–1,000, $0.08/unit for 1,001–10,000)
- Volume - the tier that contains the total quantity determines the rate for all units
- Graduated - each tier's rate applies only to units within that tier's range
- Formula - a mathematical expression evaluated at billing time (see Price Formulas)
- Effective date - prices can be scheduled to take effect in the future
- Country code - geo-specific pricing for different markets
- Currency - each price is denominated in a single currency; use multiple prices for multi-currency support
Price Formulas
Price formulas let you define dynamic pricing using mathematical expressions that are evaluated at billing time. This is useful for pricing models that depend on runtime variables - usage volume, contract size, exchange rates, or custom metrics.
Formulas support standard arithmetic operators, conditional logic, and named variables. Each variable has a type and optional default value. At billing time, the formula engine resolves all variables and computes the final price.
Example:
base_price * (1 - volume_discount) where volume_discount increases with usage.Promotions
Promotions allow you to offer discounts, credits, and special pricing to customers through coupon codes, automatic rules, or manual application.
Key concepts:
- Code - the coupon code a customer enters (e.g.,
SAVE20) - Effects - what the promotion does: percentage discount, fixed discount, free trial extension, or credit grant
- Conditions - eligibility rules: minimum spend, specific plans, customer segments, date ranges
- Budget - optional spending cap; the promotion deactivates when the budget is exhausted
- Stackable - whether this promotion can combine with other active promotions
- Simulation - preview the financial impact of a promotion before activating it
Payment Gateways
A payment gateway configuration connects Kontorion to an external payment processor (Stripe, GoCardless, or other providers) for collecting payments from customers.
Each organization can have multiple gateway configurations - for example, Stripe for card payments and GoCardless for SEPA direct debits. One gateway is marked as the default.
Key concepts:
- Provider - the payment processor (
stripe,gocardless, etc.) - Mode -
liveortest- determines whether real charges are made - Supported currencies - which currencies this gateway can process
- Supported methods - which payment methods this gateway handles (card, direct_debit, etc.)
Payment Methods
A payment method is a stored instrument (credit card, bank account, direct debit mandate) that a customer uses to pay invoices. Payment methods are tokenized through the configured payment gateway - Kontorion never stores raw card numbers or bank details.
Each customer can have multiple payment methods. One is marked as
is_default and is used automatically when invoices are finalized.Tax Rules
Tax rules define the tax rates applied to charges based on jurisdiction, product category, and customer location. Kontorion evaluates tax rules at invoicing time and adds the appropriate tax line items to each invoice.
Key concepts:
- Jurisdiction - country and optional region the rule applies to
- Tax type -
vat,sales_tax,gst,hst, etc. - Inclusive vs. exclusive - whether the tax is included in the listed price or added on top
- Compound tax - whether this tax is calculated on the pre-tax amount or on the amount including other taxes
- Apply order - controls the sequence when multiple tax rules apply
Tax Compliance
Manage your organization's tax profile and access EU VAT rates. The tax profile stores your legal entity details (VAT ID, tax regime, legal address) used on invoices and for reverse-charge determination.
EU VAT rates are maintained automatically and include standard, reduced, super-reduced, and parking rates for all EU member states.
Tax Export
Export tax data for compliance reporting and filing. Generates structured tax reports covering invoices, tax amounts, and jurisdiction breakdowns for a specified period.
Use tax exports to prepare VAT returns, sales tax filings, or to feed data into your accounting system.
Subscription Add-Ons
Add-ons are additional products attached to an existing subscription outside of the base plan. Use add-ons for optional features, premium support tiers, or one-time charges that apply to a specific subscription.
Add-ons are billed alongside the subscription's regular charges and appear as separate line items on the invoice.
Scheduled Changes
Scheduled changes allow you to queue modifications to subscriptions, plans, or other entities that take effect at a future date. Common uses include price increases, plan migrations, and feature launches.
Key concepts:
- Release strategy -
immediate(execute now),scheduled(at a specific datetime), ornext_period(at the start of the next billing cycle) - Dependencies - chain changes so one executes only after another completes
- Rollback window - how long after execution the change can be reversed
- Notification - optionally notify the customer before a change takes effect
Billing Milestones
Billing milestones are percentage-based checkpoints tied to a subscription's product delivery. They're designed for project-based or milestone-based billing - where charges are triggered when specific deliverables are completed rather than on a recurring schedule.
Example: A consulting engagement billed 25% at kickoff, 50% at mid-point, and 25% at completion.
Key concepts:
- Trigger type -
manual(you mark it complete) ordate(triggers automatically at a scheduled date) - Percentage - the fraction of total contract value to invoice when this milestone triggers
- Status -
pending,triggered, orinvoiced
Dunning
Dunning is the automated process of recovering failed payments. When an invoice payment fails, the dunning policy defines a sequence of escalating actions - retry the payment, send reminder emails, and eventually cancel the subscription if payment isn't recovered.
How it works:
- An invoice payment fails
- The dunning policy's first step activates (e.g., retry after 3 days)
- If the retry fails, the next step activates (e.g., send a reminder email after 7 days)
- Steps escalate until payment succeeds or the final action triggers (e.g., cancel subscription after 30 days)
Webhooks
Webhooks deliver real-time event notifications to your application when something happens in Kontorion - an invoice is finalized, a payment succeeds, a subscription is canceled.
Inbound webhooks are authenticated via HMAC signatures using a shared secret. Your endpoint should verify the signature before processing the payload.
Common events:
invoice.finalized, payment.succeeded, payment.failed, subscription.created, subscription.canceled, customer.createdWebhook Secrets
Webhook secrets are the HMAC signing keys used to authenticate inbound webhook payloads. Each secret is scoped to an entity (e.g., a specific integration endpoint) and can be rotated without downtime by creating a new secret before deactivating the old one.
Organization Settings
Organization-level configuration that applies to all resources within your account. Includes default currency, timezone, invoice numbering format, payment terms, and feature flags.
Custom Fields
Custom field definitions extend the data model of core entities (customers, subscriptions, plans, products) with your own fields. Define the field type, validation rules, and visibility, then set values on individual records.
Supported field types:
text, number, boolean, date, enum, entity_ref
Key concepts:
- Entity types - which resources this field applies to (e.g.,
customer,subscription) - Field group - logical grouping for UI display
- Validation - regex patterns, min/max values, required/optional
- Auditable - whether changes to this field are tracked in the audit log
- Deprecation - soft-disable a field before permanent removal
Verifications
Customer verification tracks identity checks and compliance validations performed through external verification providers. Each verification has a status lifecycle:
pending → verified / failed / expired.
Use verifications for KYC/KYB compliance, age verification, or business entity validation.Analytics
Real-time business metrics for your billing operation. Track monthly recurring revenue (MRR), customer churn, revenue breakdown by plan, and other key indicators.
- MRR - the normalized monthly revenue from all active subscriptions
- Churn - the rate at which customers cancel or downgrade
- Revenue - breakdown by product, plan, currency, and time period
Test Clocks
Test clocks let you simulate the passage of time in a sandbox environment. Instead of waiting days or months for billing events to occur naturally, advance the clock to trigger renewals, trial expirations, dunning escalations, and scheduled changes instantly.
How it works:
- Create a test clock with a frozen starting time
- Create subscriptions and other resources using this clock
- Advance the clock to any future time - all time-dependent operations execute as if real time passed
Test Payment Simulations
Simulate payment outcomes in sandbox environments without connecting to real payment processors. Trigger specific scenarios - successful payments, failures, pending states, and disputes - to test your integration's handling of each case.
Combine with test clocks to simulate full lifecycle scenarios: create a subscription, advance time to generate an invoice, then simulate a payment failure to test your dunning flow.
Accounting
API Keys
Approval Workflows
AuditEvents
AuditRetention
Meters
BulkArchive
Costs
Scheduling/Costs
CreditNotes
Tags
Currencies
Portal
E-Invoicing
FX
Identity Providers
Organizations
InvoiceTemplates
Webhooks (Keycloak)
Me
Account
Members
Bindings
Notifications
Authorization
Scheduling/Plans
Scheduling/Prices
Scheduling/Products
ProductMeterBindings
Scheduling/Promotions
RateTables
Roles
SCIM
Search
Segment Rules
Settlements
Scheduling/TaxRules
TaxRules
Transactions
Usage
Users
Webhook Endpoints
Workspaces
Schemas
internal.accounting.IntegrationConfiginternal.accounting.UpsertIntegrationRequestdto.ActivePromotionDTOdto.AddInvoiceLineRequestDTOdto.BillingMilestoneDTOdto.ConditionMetadto.CreateManualInvoiceRequestDTOdto.CreditNoteApplicationDTOdto.CreditNoteDTOdto.CreditNoteLineDTOdto.EffectMetadto.InvoiceDTOdto.InvoiceLineAtomDTOdto.InvoiceLineDTOdto.MeterBindingMeterSummarydto.MeterDTOdto.ProductMeterBindingDTOdto.PromotionDTOdto.ProrationLedgerDTOdto.ProrationRecordDTOdto.RefundInvoiceRequestdto.SubscriptionDTOdto.SubscriptionDriftSummarydto.SubscriptionItemDTOdto.SubscriptionPhaseDTOdto.VoidInvoiceResponseDTOdto.WalletDTOinternal.approval.ApprovalDecisioninternal.approval.ApprovalDecisionValueinternal.approval.ApprovalRequestinternal.approval.ApprovalStatusinternal.approval.ApprovalStepinternal.approval.ApprovalWorkflowTemplateinternal.approval.ApproveRejectRequestinternal.approval.CreateWorkflowTemplateRequestinternal.approval.RejectionActioninternal.approval.TimeoutActioninternal.approval.TriggerActioninternal.approval.UpdateWorkflowTemplateRequestinternal.audit.AuditEventRetentionPolicyinternal.audit_dto.Actorinternal.audit_dto.AuditEventinternal.audit_dto.CustomerAuditEventinternal.credit_note.ApplyCreditNoteRequestinternal.credit_note.CreateCreditNoteLineRequestinternal.credit_note.CreateCreditNoteRequestinternal.credit_note.CreditNoteReasonCodeinternal.credit_note.CreditNoteStatusdomain.AddInvoiceLineRequestdomain.AddItemRequestdomain.AddProductRequestdomain.AdjustRequestdomain.AdjustmentTypedomain.AdvanceTestClockRequestdomain.AllowanceStateResponsedomain.AppliedPromotiondomain.AppliesAtdomain.BillingAddressdomain.BillingIntervalUnitdomain.BillingModeldomain.BillingTimingdomain.BindingRoledomain.BreakdownAdjustmentdomain.BudgetBehaviordomain.CancellationReasondomain.CaptureHoldRequestdomain.ChangeCustomerModeRequestdomain.ChangeCustomerTypeRequestdomain.ChangeQuantityPreviewRequestdomain.ChangeQuantityPreviewResultdomain.ChangeQuantityRequestdomain.ChangeSubscriptionVersionRequestdomain.ChargeKinddomain.ChildVersionPinsdomain.ComputePriceRequestdomain.ComputePriceResponsedomain.ConditionModedomain.ConditionPreviewdomain.CopyAsDraftRequestdomain.CopyCostRequestdomain.CopyPriceAsDraftRequestdomain.CopyPromotionAsDraftRequestdomain.CopyTaxRuleAsDraftRequestdomain.Costdomain.CostExpressiondomain.CostScopedomain.CostVersiondomain.CreateBracketEntrydomain.CreateCostRequestdomain.CreateCustomFieldDefinitionRequestdomain.CreateCustomerRequestdomain.CreateFXOverrideRequestdomain.CreateLookupEntrydomain.CreateMeterRequestdomain.CreatePaymentMethodRequestdomain.CreatePhaseRequestdomain.CreatePlanRequestdomain.CreatePriceFormulaRequestdomain.CreatePriceRequestdomain.CreatePriceTierRequestdomain.CreateProductMeterBindingRequestdomain.CreateProductRequestdomain.CreatePromotionPhasedomain.CreatePromotionRequestdomain.CreateRateTableRequestdomain.CreateSubscriptionAddOnRequestdomain.CreateSubscriptionRequestdomain.CreateTagRequestdomain.CreateTaxRuleRequestdomain.CreateTestClockRequestdomain.CreateTestPaymentSimulationRequestdomain.CreateVerificationRequestdomain.CreateVersionRequestdomain.CreateWalletRequestdomain.CreateWorkspaceCurrencyRequestdomain.CreateWorkspaceRequestdomain.CreditRequestdomain.CurrencyReferencesdomain.CustomFieldDefinitiondomain.CustomFieldEntityTypedomain.CustomFieldsdomain.Customerdomain.CustomerAttributeConditiondomain.CustomerStatusdomain.CustomerTypedomain.CustomerVerificationdomain.DebitRequestdomain.DependsOndomain.DimensionVarsdomain.DurationUnitdomain.EUVATRatedomain.EffectScopedomain.EndKinddomain.EnrichedPlanProductdomain.EntityRefConfigdomain.EnumOptiondomain.ExternalVerificationConditiondomain.FXOverridedomain.FXPolicydomain.FXSnapshotdomain.FieldStatusdomain.FieldTypedomain.FilterNodedomain.FilterOperatordomain.FilterTreedomain.FirstPurchaseConditiondomain.FixedDiscountEffectdomain.FormulaBindingsdomain.FormulaVarTypedomain.FormulaVariabledomain.FreePeriodsEffectdomain.FreeProductEffectdomain.GenerateInvoiceRequestdomain.HoldRequestdomain.HoldStatusdomain.IncludedQuantitySourcedomain.IngestEventRequestdomain.Invoicedomain.InvoiceLinedomain.InvoiceLineAtomdomain.InvoiceLineAtomTaxComponentdomain.InvoiceLineAtomTierdomain.InvoiceLineTypedomain.InvoiceStatusdomain.InvoiceTypedomain.LateEventPolicydomain.MergeConflictdomain.MergeCustomerRequestdomain.MergeResultdomain.MergeStrategydomain.Metadatadomain.MeterBreachdomain.MeterFormuladomain.MeterFunctiondomain.MigrateModedomain.MigrateSubscribersRequestdomain.MinimumSpendConditiondomain.OrgTaxProfiledomain.PaymentMethoddomain.PaymentMethodStatusdomain.PaymentMethodTypedomain.PaymentOutcomedomain.PercentageDiscountEffectdomain.PhaseKinddomain.PhaseStatusdomain.PhaseTransitionTimingdomain.Plandomain.PlanPricePreviewLinedomain.PlanPricePreviewRequestdomain.PlanPricePreviewResponsedomain.PlanProductdomain.PlanProductCostSummarydomain.PlanProductMeterBindingSummarydomain.PlanProductPriceSummarydomain.PlanStatusdomain.PlanTransitionRequestdomain.PlanVersiondomain.PlanVersionProductdomain.PlanVersionSnapshotdomain.Pricedomain.PriceBreakdowndomain.PriceFormuladomain.PriceKinddomain.PriceOverrideEffectdomain.PriceStatusdomain.PriceTierdomain.PriceVersiondomain.PricingModeldomain.PricingVarsdomain.Productdomain.ProductAllowanceStatedomain.ProductCombinationConditiondomain.ProductSavingdomain.ProductStatusdomain.ProductTaxCategorydomain.ProductTypedomain.ProformaInvoicedomain.ProformaInvoiceLinedomain.Promotiondomain.PromotionArchetypedomain.PromotionConditionsdomain.PromotionEffectsdomain.PromotionPhasedomain.PromotionPreviewRequestdomain.PromotionPreviewResponsedomain.PromotionRedemptiondomain.PromotionRedemptionStatusdomain.PromotionStatusdomain.PromotionTimingdomain.PromotionVisibilitydomain.ProrationTypedomain.ProviderIDdomain.QuantityThresholdConditiondomain.RateTabledomain.RateTableEntrydomain.RateTableVersiondomain.RedeemPromotionRequestdomain.RegenerateInvoiceResultdomain.RemoveItemRequestdomain.ResolvePriceRequestdomain.SetVATManualOverrideRequestdomain.SetVersionTrackRequestdomain.SimulateChangesRequestdomain.SimulateInvoicedomain.SimulateInvoiceLinedomain.SimulateRequestdomain.SimulateResponsedomain.SimulateSavingsdomain.SimulationLineItemdomain.SimulationResultdomain.SpendScopedomain.StartTriggerdomain.Subscriptiondomain.SubscriptionAddOndomain.SubscriptionItemdomain.SubscriptionItemInputdomain.SubscriptionPhasedomain.SubscriptionPlanConditiondomain.SubscriptionSettingsdomain.SubscriptionStatusdomain.SupplyTypedomain.Tagdomain.TaggableEntityTypedomain.TaxCategoryCodedomain.TaxRegimedomain.TaxRuledomain.TaxRuleStatusdomain.TaxTypedomain.TestClockdomain.TestClockStatusdomain.TestPaymentSimulationdomain.Thresholddomain.ThresholdActiondomain.ThresholdActionKinddomain.ThresholdComparatordomain.TopupRequestdomain.Transactiondomain.TransactionDirectiondomain.TransactionKinddomain.TransactionStatusdomain.TransferRequestdomain.TransitionPhaseRequestdomain.TranslationFieldsdomain.Translationsdomain.UpdateCostRequestdomain.UpdateCustomFieldDefinitionRequestdomain.UpdateCustomerRequestdomain.UpdateFXOverrideRequestdomain.UpdateInvoiceLineRequestdomain.UpdateInvoiceRequestdomain.UpdateMeterRequestdomain.UpdateOrgTaxProfileRequestdomain.UpdatePaymentMethodRequestdomain.UpdatePhaseRequestdomain.UpdatePlanRequestdomain.UpdatePriceFormulaRequestdomain.UpdatePriceRequestdomain.UpdateProductMeterBindingRequestdomain.UpdateProductRequestdomain.UpdatePromotionRequestdomain.UpdateRateTableRequestdomain.UpdateSubscriptionRequestdomain.UpdateTagRequestdomain.UpdateTaxRuleRequestdomain.UpdateVerificationStatusRequestdomain.UpdateWalletSettingsRequestdomain.UpdateWorkspaceCurrencyRequestdomain.UpdateWorkspaceRequestdomain.UpsertSettingsRequestdomain.UsageAggregateBucketdomain.UsageAggregateBucketSizedomain.UsageAggregateMetricdomain.UsageAggregateResponsedomain.UsageCreditsEffectdomain.UsageEventdomain.UsageThresholdConditiondomain.ValidatePromotionRequestdomain.ValidationRulesdomain.VatValidationStatusdomain.VerificationCheckTypedomain.VerificationStatusdomain.VersionChangeStrategydomain.VersionTrackModedomain.Visibilitydomain.Walletdomain.WalletCreditEffectdomain.WalletHolddomain.WalletModedomain.WalletTransactiondomain.WalletTransactionSourcedomain.WalletTransactionTypedomain.Windowdomain.WindowKinddomain.Workspacedomain.WorkspaceCurrencydomain.WorkspaceModedomain.WorkspaceStatusdomain.WriteAccessinternal.dunning.CreateDunningPolicyRequestinternal.dunning.DunningActioninternal.dunning.DunningPolicyinternal.dunning.DunningStepeinvoicing.Findingeinvoicing.Severitykeycloak.OrganizationDomaininternal.invoice_template.Brandinginternal.invoice_template.CreateInvoiceTemplateRequestinternal.invoice_template.Footerinternal.invoice_template.InvoiceTemplateinternal.invoice_template.TemplateBlockinternal.invoice_template.TemplateDocumentinternal.invoice_template.Themeinternal.invoice_template.UpdateInvoiceTemplateRequestinternal.meter.BreachDailyCountinternal.milestone.BillingMilestoneinternal.milestone.BillingMilestoneStatusinternal.milestone.BillingMilestoneTriggerTypeinternal.milestone.CreateBillingMilestoneRequestinternal.milestone.CreateBillingMilestoneResponseinternal.organization.CreateOrganizationRequestinternal.organization.Invitationinternal.organization.UpdateOrganizationRequestinternal.organization_security.IDPSummaryinternal.organization_security.OrgSecuritySettingsinternal.organization_security.UpdateOrgSecuritySettingsRequestinternal.organization_team.Memberinternal.organization_team.Roleinternal.payment.CreatePaymentGatewayConfigRequestinternal.payment.PaymentGatewayConfiginternal.payment.UpdatePaymentGatewayConfigRequestinternal.payment_manual.ManualPaymentSourceinternal.payment_manual.RecordManualPaymentRequestinternal.payment_settlement.GenerateSettlementLineinternal.payment_settlement.GenerateSettlementRequestinternal.payment_settlement.Settlementinternal.payment_settlement.SettlementLineinternal.payment_settlement.SettlementLineTypeinternal.payment_settlement.SettlementStatusinternal.preferences.DateFormatinternal.preferences.FirstDayOfWeekinternal.preferences.NumberFormatinternal.preferences.UpdateUserPreferencesRequestinternal.preferences.UserPreferencesinternal.preferences.UserThemeinternal.reserve.ReserveRequestinternal.reserve.ReserveResponseinternal.scheduler.CreateScheduledChangeRequestinternal.scheduler.ReleaseStrategyinternal.scheduler.ScheduledChangeinternal.scheduler.ScheduledChangeDiffinternal.scheduler.ScheduledChangeStatusinternal.scheduler.ScheduledEntityTypeinternal.scheduler.UpdateScheduledChangeRequestinternal.segmentation.CreateSegmentRuleRequestinternal.segmentation.Metricinternal.segmentation.Operatorinternal.segmentation.SegmentRuleinternal.subscription.DriftCandidateVersioninternal.subscription.SubscriptionDriftinternal.webhook.CreateWebhookEndpointRequestinternal.webhook.CreateWebhookSecretRequestinternal.webhook.UpdateWebhookEndpointRequestmoney.Moneypagination.PageResponsehandler.AddRequiredActionRequesthandler.AttachIDPRequesthandler.BindingVersionSnapshothandler.BulkUpgradeRequesthandler.BulkUpgradeResponsehandler.BulkUpgradeSkippedRowhandler.BulkUpgradeUpgradedRowhandler.CreateInvitationRequesthandler.CreateOrganizationResponsehandler.CreateRoleRequesthandler.KeycloakEventhandler.MeOrgMembershiphandler.MeResponsehandler.MeUserhandler.MeterVersionSnapshothandler.OrganizationResponsehandler.ProductVersionSnapshothandler.PromotionVersionSnapshothandler.SCIMEmailhandler.SCIMListResponsehandler.SCIMMetahandler.SCIMNamehandler.SCIMUserhandler.SubscriptionPlanVersionHistoryRowhandler.UpdateIDPRequesthandler.UpdateMemberRolesRequesthandler.UpdateRoleRequesthandler.UpsertDomainsRequesthandler.UserProfileResponsehandler.VersionRowhandler.billingMilestoneListResponsehandler.bulkArchiveRequesthandler.bulkArchiveResponsehandler.bulkArchiveResulthandler.bulkCancelRequesthandler.bulkCancelResponsehandler.bulkCancelSkiphandler.changeQuantityResponsehandler.chargeInvoiceResponsehandler.clonePlanRequesthandler.createAPIKeyRequesthandler.createAPIKeyResponsehandler.createCustomerResponsehandler.documentCountsResponsehandler.documentResponsehandler.documentsListResponsehandler.findingResponsehandler.gatewayCreateResponsehandler.gatewayListResponsehandler.gatewayUpdateAckhandler.gatewayUpdateResponsehandler.generateRequesthandler.generateResponsehandler.generateTokensRequesthandler.issueLinkResponsehandler.meCredentialsResponsehandler.mePermissionsResponsehandler.permissionDTOhandler.permissionsResponsehandler.planDetailResponsehandler.redeemWithTokenRequesthandler.rescheduleRequesthandler.resolveFindingRequesthandler.tagIDsRequesthandler.testClockListResponsehandler.testPaymentSimulationListResponsehandler.topupResponsehandler.updateProviderSettingsRequesthandler.upsertPolicyRequesthandler.vatRateListResponsehandler.versionWarnDTOhandler.walletTopupModehandler.walletTopupRequesthandler.walletTopupResponsehandler.workspaceListResponsetime.Duration