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
Accounting
Checkout Link
Create a cart from a checkout link
Create a cart from a checkout link by its ID
Required permissions:cart:write
POST
/
checkout-links
/
{id}
/
cart
Copy
curl -X POST \
/checkout-links/{id}/cart \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"metadata": [
""
]
}'
Copy
{
"cartId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"url": "https://example.com/cart/123"
}
Authorizations
Value for the Authorization header parameter.
Path Parameters
CheckoutLink identifier
Body
The new CheckoutLink resource
Response
201
application/json
CheckoutLink resource created
Copy
curl -X POST \
/checkout-links/{id}/cart \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"metadata": [
""
]
}'
Copy
{
"cartId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"customerId": "ad7f7b7d-7b7d-7b7d-7b7d-7b7d7b7d7b7d",
"url": "https://example.com/cart/123"
}
Assistant
Responses are generated using AI and may contain mistakes.