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
Cart
Confirms a cart.
Confirms a cart.
PUT
/
public
/
checkout
/
cart
/
{id}
/
confirm
curl -X PUT \
/public/checkout/cart/{id}/confirm \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"email": "",
"phone": "",
"invoiceAddressId": "https:\/\/example.com\/",
"paymentMethodId": "https:\/\/example.com\/"
}'
{
"action": "redirect",
"redirectUrl": "<string>",
"status": "open",
"confirmationMessage": "<string>"
}
Authorizations
Value for the Authorization header parameter.
Path Parameters
Cart identifier
Body
The updated Cart resource
Response
200
application/json
Cart resource updated
Was this page helpful?
curl -X PUT \
/public/checkout/cart/{id}/confirm \
--header "Content-Type: application/json" \
--header "Authorization: Bearer <token>" \
--data '{
"email": "",
"phone": "",
"invoiceAddressId": "https:\/\/example.com\/",
"paymentMethodId": "https:\/\/example.com\/"
}'
{
"action": "redirect",
"redirectUrl": "<string>",
"status": "open",
"confirmationMessage": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.