API documentation
User
Tenant
Feature
Entitlement
User & permissions
Settings
- Settings
- Media
- Webhook
- Notification
Payment
- Payment Method
- Transaction
- SEPA XML
- Open Banking
- Bank Account Transaction
Customer
- Customer
- Customer Address
- Customer Email
- Customer Settings
- Customer Otp
Billing
- Invoice
- Invoice Position Item
- Billing Run
Dunning
- Dunning Document
- Dunning Rule
Subscription
- Subscription
- Subscription Item
- Subscription Measurement
- Billing Group
Offers
- Offer
- Offer Recipient
- Offer Template
Catalogue
- Unit
- Measurement
- Product
- Product Family
- Price Plan
- Coupon
Checkout
- Checkout Link
- Cart
- GETRetrieves completed carts of the current tenant.
- GETRetrieves a cart by its ID.
- GETRetrieves a cart by its ID.
- PUTChanges the quantity of a cart item.
- PUTConfirms a cart.
- PUTConfirms the OTP of a cart.
- GETRetrieves the invoice addresses of a cart.
- GETRetrieves the payment methods of a cart.
- PUTPrepares a cart for stripe.
- GET
Accounting
Retrieves a cart by its ID.
Retrieves a cart by its ID. The cart is only returned if it is not expired.
curl -X GET \
/public/checkout/cart/{id} \
--header "Authorization: Bearer <token>"
{
"price": {
"amountDue": 123,
"currencyCode": {},
"netAmount": 123,
"taxes": [
{
"netAmount": 123,
"taxAmount": 123,
"rate": 123
}
],
"discountDetails": [
"<string>"
]
},
"id": "c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b",
"status": "<any>",
"customer": "c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b",
"email": "<string>",
"invoiceAddress": {
"id": "<string>",
"vatId": "DE123456789",
"type": "TYPE_DEFAULT",
"default": "true",
"status": "active",
"city": "Berlin",
"zip": "12345",
"street": "Musterstraße",
"houseNumber": "1a",
"countryCode": "DE",
"companyName": "ACME Inc.",
"salutation": "Herr",
"addition": "c/o John Doe",
"costCentre": "123456789",
"firstName": "John",
"lastName": "Doe"
},
"customerPrefill": {},
"paymentMethod": "c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b",
"items": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"quantity": {},
"quantityDetails": {
"aggregationType": "count",
"unit": "<string>",
"description": "<string>",
"quantityEditable": true
},
"price": {
"currencyCode": {},
"taxRate": 123,
"totalNetAmount": 10,
"type": "recurring",
"calculationType": "flat_fee",
"payInAdvance": true,
"price": {
"amount": 123
},
"recurring": {
"interval": "day",
"intervalCount": 123,
"trialPeriodDays": 123,
"recurringAmount": 123
},
"freeUnits": {}
},
"type": "product",
"periods": [
{
"contractPeriod": "<string>",
"cancellationPeriod": "<string>"
}
]
}
],
"completionDetails": [
"<string>"
],
"settings": {
"allowCoupons": true,
"forceCompany": true,
"backButton": {
"url": "https://example.com",
"label": "Back to the shop"
}
}
}
Authorizations
Value for the Authorization header parameter.
Path Parameters
Cart identifier
Response
"c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b"
The status of the cart.
Possible values:
open
: The cart is open and can be edited.confirming
: The cart is confirming and cannot be edited.
The customer who owns the cart.
"c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b"
VAT ID, which will be used to bill to. If not provided, we will use the customer vat id.
"DE123456789"
TYPE_DEFAULT
, TYPE_INVOICE
"TYPE_DEFAULT"
"true"
active
, archived
"active"
"Berlin"
"12345"
"Musterstraße"
"1a"
"DE"
Company name, which will be used to bill to.
"ACME Inc."
Firma
, Herr
, Frau
"Herr"
Additional address information, which will be shown on generated documents like invoices, reminders, etc.
"c/o John Doe"
Cost centre, which will be shown on generated documents like invoices, reminders, etc.
"123456789"
First name, which will be shown on generated documents like invoices, reminders, etc.
"John"
Last name, which will be shown on generated documents like invoices, reminders, etc.
"Doe"
The customer prefill data which should be used to prefill the checkout form.
The payment method which should be used for the cart.
wallet
, sepa_debit
, stripe
, fake_provider
, paypal
, bank_transfer
, go_cardless
, testing
sepa_debit
, card
, paypal
, bank_transfer
, wallet
, fake_provider
active
, action_required
, expired
, revoked
, gateway_unconfigured
"active"
The card data of the payment method, if the type is "card"
The brand of the card
"Visa"
The last 4 digits of the card
"4242"
The expiration month of the card
12
The expiration year of the card
2022
The card holder name
"Max Mustermann"
The sepa mandate data of the payment method, if the type is "sepa_debit"
The iban of the sepa mandate
"DE8937*********3232"
The bic of the sepa mandate
"COBADEFFXXX"
The mandate reference of the sepa mandate
"MNDT-2021-123456"
The signing date of the sepa mandate
"2021-01-01T00:00:00+00:00"
"c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b"
The items of the cart.
If null, the customer has not yet provided a invoice address.
The total net amount for this cart item which is now due.
10
recurring
, metered
, instant_metered
flat_fee
, per_unit
, tiered
, volume
, stair_step
, percentage
product
Details shown to the customer when the cart is completed.
The settings of the cart.
Whether coupons can be applied to the checkout link or not.
Whether the company should be forced in the checkout form or not.
The URL to redirect to when the back button is clicked.
{
"url": "https://example.com",
"label": "Back to the shop"
}
Was this page helpful?
curl -X GET \
/public/checkout/cart/{id} \
--header "Authorization: Bearer <token>"
{
"price": {
"amountDue": 123,
"currencyCode": {},
"netAmount": 123,
"taxes": [
{
"netAmount": 123,
"taxAmount": 123,
"rate": 123
}
],
"discountDetails": [
"<string>"
]
},
"id": "c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b",
"status": "<any>",
"customer": "c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b",
"email": "<string>",
"invoiceAddress": {
"id": "<string>",
"vatId": "DE123456789",
"type": "TYPE_DEFAULT",
"default": "true",
"status": "active",
"city": "Berlin",
"zip": "12345",
"street": "Musterstraße",
"houseNumber": "1a",
"countryCode": "DE",
"companyName": "ACME Inc.",
"salutation": "Herr",
"addition": "c/o John Doe",
"costCentre": "123456789",
"firstName": "John",
"lastName": "Doe"
},
"customerPrefill": {},
"paymentMethod": "c1b0d0c0-0b0b-4b0b-8b0b-0b0b0b0b0b0b",
"items": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"quantity": {},
"quantityDetails": {
"aggregationType": "count",
"unit": "<string>",
"description": "<string>",
"quantityEditable": true
},
"price": {
"currencyCode": {},
"taxRate": 123,
"totalNetAmount": 10,
"type": "recurring",
"calculationType": "flat_fee",
"payInAdvance": true,
"price": {
"amount": 123
},
"recurring": {
"interval": "day",
"intervalCount": 123,
"trialPeriodDays": 123,
"recurringAmount": 123
},
"freeUnits": {}
},
"type": "product",
"periods": [
{
"contractPeriod": "<string>",
"cancellationPeriod": "<string>"
}
]
}
],
"completionDetails": [
"<string>"
],
"settings": {
"allowCoupons": true,
"forceCompany": true,
"backButton": {
"url": "https://example.com",
"label": "Back to the shop"
}
}
}