quick_checkout
ActiveTool of Synchronity
Assemble checkout-ready cart(s) in ONE call for a multi-product (and optionally multi-store) request. Creates a cart per store, adds all items, and sets the shipping address — then returns the cart(s) with delivery options to choose. Use this when the buyer lists several products at once (optionally across stores) and/or gives their address up front, instead of calling create_cart/add_to_cart/set_shipping_address separately. Does NOT select delivery, check out, or pay — the buyer picks delivery (select_shipping_option) and approves checkout/payment per store afterward. Out-of-stock items are reported; pass customer.email to auto-arm a back-in-stock alert for them.
Parameters schema
{
"type": "object",
"required": [
"items",
"shipping_address"
],
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"required": [
"site_id",
"product_id",
"quantity"
],
"properties": {
"addons": {
"type": "object"
},
"site_id": {
"type": "string"
},
"quantity": {
"type": "integer"
},
"product_id": {
"type": "string"
},
"variant_id": {
"type": "string"
}
}
},
"description": "Products to buy. Each entry: { site_id, product_id, quantity, variant_id?, addons? }. Items may span multiple stores (grouped by site_id)."
},
"customer": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
}
},
"description": "Optional buyer contact carried for checkout; customer.email arms back-in-stock alerts for out-of-stock items."
},
"shipping_address": {
"type": "object",
"required": [
"country_code"
],
"properties": {
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"country_code": {
"type": "string",
"description": "2-letter ISO country code (required)."
}
},
"description": "Buyer delivery address (applied to every store)."
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
Synchronity
https://github.com/themewireco/synchronity
2/7 registries