Create subscription

Log in to see full request history

Create a subscription (and optionally customer). Payment information can be obtained in one of the following ways:

  • A reference to an existing payment method for the customer can be given.
  • A reference to a customer payment method obtained with Frisbii Billing and Pay Checkout
  • Let the system send a signup receipt email to the customer with link to hosted payment information page for the subscription.
  • Handle the gathering of payment information self, e.g. by using the link to the hosted payment information page.

The parameter start_date is optional and indicates when the subscription is eligible to begin the first billing period. Whether the first billing period i starting at start_date depends on the schedule type on the plan for the subscription. If a fixed day schedule type is used, the first billing period will start on the first fixed day after start_date.

A subscription creation can be made conditional on a successful payment of the first invoice. See the parameter conditional_create. This will require a signup method of source, and the subscription must be eligible for billing for the first period right away.

When creating a subscription either a reference to an existing customer must be provided, or a customer can be created in the same operation using the parameter create_customer. The operation is atomic, so if subscription create fails, no customer will be created.

An example of how to use the create subscription API operation can be fore here.

To add subscription add-ons when creating a list of CreateSubscriptionAddOn</æ> objects can be provided in parameter add_ons. An example on the use of add-ons can be found here.

Additional costs can be added to a subscription at creation time by providing a list of CreateSubscriptionAdditionalCost objects in parameter additional_costs.

Errors

The operation can generate the following errors beside the generic HTTP error codes described here.

Error code HTTP codeDescription
9404Customer not found
10404Subscription plan provided not found
11400Duplicate handle - subscription handle, additional cost handle or subscription add-on handle already used
14400End date must be in the future
19404Customer card provided as source but cannot be found
34400Invalid card token provided as source
37 400Start date if provided cannot be more than one period in the past, e.g. one month.
75400Subscription not eligible for invoice. This error is returned if the conditional_create parameter is set to true, but the subscription does not have a plan resulting in an invoice right away. This is the case for subscription plans with fixed day billing. E.g. on the first of every month.
83404 Discount not found
85 400Multiple discounts not allowed
86404Coupon not found or not eligible
87400Coupon already used
103400Card token already used
104400Card token has expired
110400Unknown or missing source argument
111400Source not allowed for signup method
113404Add-on not found
114400Add-on already added or multiple occurences of same add-on in request without explicit unique subscription add-on handle
115 400 Add-on quantity not allowed for on-off add-on type
116400Add-on not eligible for subscription plan
169404Entitlement not found
Body Params
string

Customer handle of existing customer. Customer can also be provided in same operation by supplying the parameter create_customer.

string
required

Plan handle

int32
≥ 0

Optional custom per quantity plan price. If provided the plan price billed for each billing period will be overridden by this price.

int32
≥ 1

Optional quantity of the plan product for this subscription. If not provided the default is the default plan quantity defined for the plan.

boolean

Test flag. If given it will be verified that the account state matches the intended create state.

string

Per account unique handle for the subscription. Max length 255 with allowable characters [a-zA-Z0-9_.-@]. Must be provided if generate_handle not defined.

metadata
object

Custom metadata.

string

The payment method source if signup method source. Either an existing payment method for the customer, e.g. existing card id ca_... or a card token ct_....

create_customer
object

Create customer object

int32
≥ 1

Optional plan version, default is to use newest version of plan

boolean

Whether the optional amount is including VAT. Defaults to true.

boolean

Auto generate handle on the form sub-[sequence_number]

string

Date and time on the form yyyy-MM-dd, yyyyMMdd, yyyy-MM-ddTHH:mm and yyyy-MM-ddTHH:mm:ss from which the subscription is eligible to schedule first invoice. If no time part is given start of day will be used. A start date in the past can be used, but no more than one period length in the past. A start date in the past can result in an instant invoice for a past billing period start. Default value is current date and time.

string

Fixed date and time on the form yyyy-MM-dd, yyyyMMdd, yyyy-MM-ddTHH:mm and yyyy-MM-ddTHH:mm:ss where the subscription will automatically cancel. The subscription will expire at the end of the billing period containing the end date. Default is no fixed end date.

int64
≥ 0

A grace duration in seconds from the creation of a subscription where no dunning process is started for a failing invoice. This allows a certain amount of time for the customer to sign up with a payment method.

boolean

Override plan trial settings and disable trial

boolean

Override plan setup fee settings and disable fee

string

Optional custom trial period overriding the setting on the subscription plan. Defined in ISO 8601 duration. See https://en.wikipedia.org/wiki/ISO_8601#Durations. E.g. P7D for seven days or P1M for one month.

subscription_discounts
array of objects
length between 0 and 100

Discounts to attach to subscription. A maximum of 100 discounts is allowed.

subscription_discounts
coupon_codes
array of strings

Coupon codes to redeem for subscription

coupon_codes
add_ons
array of objects
length between 0 and 100

Add-ons to attach to subscription. The same add-on can only be attached to subscription once unless unique handles are supplied for the subscription add-on. A maximum of 100 add-ons is allowed.

add_ons
additional_costs
array of objects
length between 0 and 100

Additional costs to add to subscription at creation time. A maximum of 100 additional costs is allowed.

additional_costs
additional_entitlements
array of strings

Additional entitlements to add to subscription at creation time.

additional_entitlements
excluded_entitlements
array of strings

Entitlements to exclude from subscription at creation time.

excluded_entitlements
metered_billing_products
array of objects

Metered billing products to attach to subscription.

metered_billing_products
string
required

The signup method, how to get payment information from customer, one of the following: source, email, link. The source method takes a reference to an existing customer payment method (e.g. card ca_..) or a card token for ct_.... The method email will send an email to customer requesting payment information with a link to a hosted page. The method link does not do anything but the hosted page link in the subscription object can be provided to the customer as a link to enter payment information.

Responses

Response body
object
string
required
length ≥ 1

Per account unique handle for subscription

string
required
length ≥ 1

Customer handle

string
required
length ≥ 1

Subscription plan handle

string
required
length ≥ 1

State of the subscription, one of the following: active, expired, on_hold or pending. Active subscriptions can be cancelled and will expire at the end of the current billing period, or later depending on optional notice and fixation periods, this can be checked using the is_cancelled parameter and expires.

active expired on_hold pending

boolean
required

Test flag

int32

Optional custom plan price. If defined the plan price billed for each billing period will be overridden by this price.

int32
required

Quantity of the plan product for this subscription.

date-time

Fixed date when the subscription will expire because of cancellation. In ISO-8601 extended offset date-time format.

date-time

Date when the subscription was reactivated from on hold. ISO-8601 extended offset date-time format.

string
required
length ≥ 1

Time zone for the subscription as standard time zone id. See Wikipedia

date-time
required

Date when the subscription was created. In ISO-8601 extended offset date-time format.

date-time

Date when the subscription was activated. Will only differ from created in a two step prepared -> activated subscription create scenario. In ISO-8601 extended offset date-time format.

boolean
required

If the subscription renews at current period end. Also true for subscriptions with manual scheduling.

coupons
array of strings

List of coupon handles redeemed for the subscription

coupons
string
required
length ≥ 1

Currency for the subscription in ISO 4217 three letter alpha code

int32
required

Subscription plan version

boolean

If optional custom plan price this parameter tells whether the amount is including VAT

date-time
required

Date and time from which the subscription is eligible to schedule invoices. Either from create or from the latest reactivate or subscription change. In ISO-8601 extended offset date-time format.

date-time

Fixed end date and time. In ISO-8601 extended offset date-time format.

int64

Grace duration in seconds from the creation of a subscription where no dunning process is started for a failing invoice. This allows a certain amount of time for the customer to sign up with a payment method.

date-time

Start date and time for the current billing period. In ISO-8601 extended offset date-time format.

date-time

Start date and time for the next billing period, and also end date and time for the current billing period. Is also the date and time for next invoice if the subscription is renewing. In ISO-8601 extended offset date-time format.

date-time

Start date and time for the first ever billing period. In ISO-8601 extended offset date-time format.

date-time

Start date and time for the previous billing period. In ISO-8601 extended offset date-time format.

date-time

Start date and time of free trial period. In ISO-8601 extended offset date-time format.

date-time

End date and time of free trial period. In ISO-8601 extended offset date-time format.

boolean
required

Whether the subscription has been cancelled. Cancelled subscriptions will expire at the end of the current billing period.

boolean
required

Whether the subscription is in its trial period, or if the subscription will start a trial period at a start date in the future. See has_started to determine if the actual trial period has started or not.

boolean
required

If subscription has a later start date, this parameter tells if the subscription has started. Use this in connection with state to determine if a subscription is active.

int32
required
≥ 0

Number of renewals for the subscription (number of invoices)

date-time

Date when the subscription was cancelled. In ISO-8601 extended offset date-time format.

date-time

Date when the subscription expired. ISO-8601 extended offset date-time format.

string

Reason for expire. Can be ondemand, cancelled, dunning or fixed

dunning cancelled ondemand fixed

date-time

Date when the subscription was put on hold. ISO-8601 extended offset date-time format.

string

Reason for on hold. Can be ondemand or dunning

dunning ondemand

boolean
required

Whether the customer at some point has added payment information to the subscription

string

Deprecated - see pending_change. If set, a subscription plan change has been scheduled to follow the next renewal. The value is the subscription plan handle to update to.

date-time

If defined the date a reminder email was sent for the current billing period. In ISO-8601 extended offset date-time format.

int32
required

Number of failed invoices for this subscription

int64
required

Summed amount for failed invoices

int32
required

Number of cancelled invoices for this subscription

int64
required

Summed amount for cancelled invoices

int32
required

Number of pending invoices for this subscription

int64
required

Summed amount for pending invoices

int32
required

Number of dunning invoices for this subscription

int64
required

Summed amount for dunning invoices

int32
required

Number of settled invoices for this subscription

int64
required

Summed settled amount

int64
required

Summed refunded amount

int32
required

Number of pending additional costs

int64
required

Summed amount of pending additional costs incl vat

int32
required

Number of additional costs that have been applied to invoices

int64
required

Summed amount of additional costs that have been applied to invoices

int32
required

Number of credits that have not fully been applied to invoices

int64
required

Summed credit amount not yet applied to invoices

int32
required

Number of credits that have fully been applied to invoices

int64
required

Summed credit amount that have been applied to invoices

hosted_page_links
object
required
subscription_discounts
array of strings

List of subscription discounts handles attached to subscription

subscription_discounts
pending_change
object

List of subscription changes both at most one pending and previously applied

string

The handle of the plan to change to

int32
≥ 0

Optional custom per quantity plan price. If provided the plan price billed for each billing period will be overridden by this price.

int32
≥ 1

Optional quantity of the plan product for this subscription. If not provided the default is the default plan quantity defined for the plan.

boolean
required

Whether this is a pending change at next renewal, or it has been applied

date-time

If defined the change was applied on this date and time

date-time

Date and time of update of pending change

date-time
required

Date when the change was created. In ISO-8601 extended offset date-time format.

boolean

Whether the optional amount is including VAT. Defaults to true.

subscription_add_ons
array of objects

List of subscription add-ons to create in change

subscription_add_ons
object
string
required
length ≥ 1

Per subscription unique handle for the subscription add-on.

int32
≥ 1

Quantity of the subscription add-on. Only defined for quantity type add-ons

int32

Fixed subscription add-on per quantity price. If not defined the subscription add-on uses the add-on price.

string

Optional name overriding the add-on name. If not defined the add-on name will be used as order line text.

string

Optional description overriding the add-on description. If not defined the add-on description will be used.

date-time
required

Date when the subscription add-on was created. In ISO-8601 extended offset date-time format.

add_on
object
required

Add-on for subscription add-on

boolean

If fixed price this parameter tells whether the amount is including VAT

remove_add_ons
array of strings

Subscription add-ons to remove from subscription by subscription add-on handle

remove_add_ons
subscription_changes
array of objects

List of subscription changes both at most one pending and previously applied

subscription_changes
object
string

The handle of the plan to change to

int32
≥ 0

Optional custom per quantity plan price. If provided the plan price billed for each billing period will be overridden by this price.

int32
≥ 1

Optional quantity of the plan product for this subscription. If not provided the default is the default plan quantity defined for the plan.

boolean
required

Whether this is a pending change at next renewal, or it has been applied

date-time

If defined the change was applied on this date and time

date-time

Date and time of update of pending change

date-time
required

Date when the change was created. In ISO-8601 extended offset date-time format.

boolean

Whether the optional amount is including VAT. Defaults to true.

subscription_add_ons
array of objects

List of subscription add-ons to create in change

subscription_add_ons
object
string
required
length ≥ 1

Per subscription unique handle for the subscription add-on.

int32
≥ 1

Quantity of the subscription add-on. Only defined for quantity type add-ons

int32

Fixed subscription add-on per quantity price. If not defined the subscription add-on uses the add-on price.

string

Optional name overriding the add-on name. If not defined the add-on name will be used as order line text.

string

Optional description overriding the add-on description. If not defined the add-on description will be used.

date-time
required

Date when the subscription add-on was created. In ISO-8601 extended offset date-time format.

add_on
object
required

Add-on for subscription add-on

boolean

If fixed price this parameter tells whether the amount is including VAT

remove_add_ons
array of strings

Subscription add-ons to remove from subscription by subscription add-on handle

remove_add_ons
subscription_add_ons
array of strings

List of subscription add-on handles attached to subscription

subscription_add_ons
active_payment_methods
array of strings

A list of active payment method ids. This list will at most contain 1 item.

active_payment_methods
metered_billing_products
array of strings

List of metered billing products attached to the subscription

metered_billing_products

Language
Credentials
: