Plans

Standard Plan Object

Standard Plans can only be created on the dashboard or by using a Service Account. See below for more info and the Blueprint Subscribe! for more details about how Plans and Subscriptions can work.

Attribute

Type

Description

method

string

The plan type. Default is basic.

currency

string

3 letter ISO currency code as defined by ISO 4217.

interval_unit

string

The billing frequency. Choices: DAY, WEEK, MONTH, MONTH_END, ANNUAL

name

string

The name of the plan.

human_id

string

Human readable ID that identifies the order easily, e.g. 3AG7UA

note

string

A short description of the plan.

billing_interval

string

Defines billing frequency. Choices: WEEK, MONTH, MONTH_END

items

array

List of items in the Plan. See description below.

units

number

Total number of items in the plan.

total_amount

integer

The amount to be charged on the interval specified. If missing, this will be calculated as the sum of the items.

initial_fail_amount_action

string

Decides the action taken if a payment fails in the Subscription. Choices: CANCEL, CONTINUE

max_fail_attempts

integer

If initial_fail_amount_action is CONTINUE, this is the number of interval_units that is allowed to fail before the Subscription stops.

setup_fee

integer

Initial setup fee or administrative fee, charged on creation of Subscription. Can’t be less than 0. Default is 0.

is_prorated

boolean

Sets if a plan is allowed to charge a prorate amount, which value is defined in the Subscription. Default is true.

should_retry_payments

boolean

Allow to use a retry payment system. It means if the attempt to pay a Subscription fails then automatically BuiltOn will plan another payment later. Default is false

max_payment_retries

integer

Defines how many time BuiltOn will retry to pay a Subscription . Default is 0.

retry_payment_in_minutes

integer

Defines how many time BuiltOn has to wait to retry a payment. Default is 720 (12 hours).

Plan Items

The attribute items in the Plan Object is where you put the Products your user wants to buy. These items are stored in an array. Each item has the below attributes. See Updating Items in an Order for more details on how this is used.

Attributes

Type

Description

product

string

A Product unique ID.

quantity

number

The quantity of the product.

discount

number

The discount of the product.price in the plan.

sub_products

array

An array of sub-product IDs associated in the plan.

Admin Role

*Paths listed above and denoted with a star are accessible to both Users and Admins. Additional Admin Role paths are listed below.

Create a Standard Plan

Body Parameters

Type

Description

interval_unit

string

The frequency that the Subscription acts upon. Choices areday, week, month, month_end, annual

billing_interval

string

Defines billing frequency. Choices are week, month, month_end

currency

string

Three letter ISO currency code as defined by ISO 4217.7

name

string

The name of the plan.

note

string

A short description of the plan.

items

array

List of items associated with the Plan.

setup_fee

number

A setup fee that will be paid at the beginning of the first payment cycle. Can't be less than 0. Default value is 0.

prepay

boolean

Defines whether the subscription payment is charged at the beginning or end of the billing cycle. Default value is false.

is_prorated

boolean

Sets if a Plan is allowed to charge a prorate amount, which value is defined in the Subscription. Default is true.

total_amount

number

Total amount of plan if not calculated automatically from products/resources.

should_retry_payments

boolean

Allow to use a retry payment system. It means if the attempt to pay a Subscription fails then automatically BuiltOn will plan another payment later. Default is false

max_payment_retries

integer

Defines how many time BuiltOn will retry to pay a Subscription . Default is 0.

retry_payment_in_minutes

integer

Defines how many time BuiltOn has to wait to retry a payment. Default is 720 (12 hours).

Retrieve a Plan

Path Parameters

Type

Description

<plan_id>

string

ID of the plan to get.

Get List of all Plans associated with Company

GET /plans HTTP/1.1
Content-Type: application/json
Authorization: Bearer <service-account-key>
X-Builton-Api-Key: <builton-api-key>
Host: api.builton.dev

Add Items to a Plan

Path Parameters

Type

Description

<plan_id>

string

Plan ID where Items will be added

Body Parameters

Type

Description

items

array

List of Item objects associated with Plan.

Get Subscriptions used by Plan

Path Parameters

Type

Description

<plan_id>

string

Plan ID associated with returned list of subscriptions.

Last updated