Create a Checkout
/v1/checkouts
Creates a unique checkout for a specific variant with specified attributes.
Attributes
custom_price
A positive integer in cents representing the custom price of the variant.
If the purchased product is a subscription, this custom price is used for all renewal payments. If the subscription’s variant changes in the future (i.e. the customer is moved to a different subscription “tier”) the new variant’s price will be used from that moment forward.
product_options
An object containing any overridden product options for this checkout. Possible options include:
name
- A custom name for the productdescription
- A custom description for the productmedia
- An array of image URLs to use as the product’s mediaredirect_url
- A custom URL to redirect to after a successful purchasereceipt_button_text
- A custom text to use for the order receipt email buttonreceipt_link_url
- A custom URL to use for the order receipt email buttonreceipt_thank_you_note
- A custom thank you note to use for the order receipt emailenabled_variants
- An array of variant IDs to enable for this checkout. If this is empty, all variants will be enabled.
checkout_options
An object containing checkout options for this checkout. Possible options include:
embed
- Iftrue
, show the checkout overlaymedia
- Iffalse
, hide the product medialogo
- Iffalse
, hide the store logodesc
- Iffalse
, hide the product descriptiondiscount
- Iffalse
, hide the discount code fieldskip_trial
- Iftrue
, remove the free trialsubscription_preview
- Iffalse
, hide the “You will be charged…” subscription preview textbackground_color
- A custom hex color to use for the background of the checkout page.headings_color
- A custom hex color to use for the headings on the checkout page.primary_text_color
- A custom hex color to use for the primary text on the checkout page.secondary_text_color
- A custom hex color to use for the secondary text on the checkout page.links_color
- A custom hex color to use for the links on the checkout page.borders_color
- A custom hex color to use for the borders on the checkout page.checkbox_color
- A custom hex color to use for the checkboxes on the checkout page.active_state_color
- A custom hex color to indicate an active state on the checkout page.button_color
- A custom hex color to use for the checkout button.button_text_color
- A custom hex color to use for the text within the checkout button.terms_privacy_color
- A custom hex color to use for the terms and privacy text on the checkout page.dark
deprecated - Iftrue
, use the dark theme. This has been deprecated in favor of the color options.
checkout_data
An object containing any prefill or custom data to be used in the checkout. Possible options include:
email
- A pre-filled email addressname
- A pre-filled namebilling_address.country
- A pre-filled billing address country in a ISO 3166-1 alpha-2 formatbilling_address.zip
- A pre-filled billing address zip/postal codetax_number
- A pre-filled tax numberdiscount_code
- A pre-filled discount codecustom
- An object containing any custom data to be passed to the checkoutvariant_quantities
- A list containing quantity data objects
custom
should be an object like this:
variant_quantities
should be a list of objects containing a variant ID and a quantity value (both integers):
preview
A boolean indicating whether to return a preview of the checkout. If true
, the checkout will include a preview
object with the checkout preview data.
test_mode
A boolean indicating whether the checkout should be created in test mode.
expires_at
An ISO 8601 formatted date-time string indicating when the checkout expires. Can be null
if the checkout is perpetual.
Relationships
store
The store this checkout belongs to.
variant
The variant associated with this checkout.
By default, all variants of the related product will be shown in the checkout, with your selected variant highlighted. If you want hide to other variants, you can utilise the product_options.enabled_variants
option to determine which variant(s) are displayed in the checkout.
Returns
Returns a Checkout object.