commerce

POST /v1/carts/{cartId}/checkout

Check out a cart — place and charge an order.

Бүх commerce төгсгөлийн цэгүүд

Хөгжүүлэгчийн бүх баримт бичиг

Баталгаажуулалт

API түлхүүрийг bearer token хэлбэрээр илгөэнэ үү. Түлхүүр нь billing.payment.manage эрхтэй байх ёстой бөгөөд үүнгүйгээр 404 биш, харин 403 алдаа буцааж татгалзах болно.

Энэ төгсгөл цэг нь ямар ч байгууллагын ID шаардахгүй. Таны түлхүүр аль хэдийн харьяалагдах байгууллагыг тодорхойлж байгаа бөгөөд хариу нь тухайн байгууллагын хүрээнд хязгаарлагдана.

Туршиж үзэх

Өнцөг хаалтанд байгаа бүх зүйлийг өөрийн утгаар солиж, түлхүүр санамж байрлуулагчийг хяналтын самбарынхаа түлхүүрээр сольж оруулна уу.

curl -X POST https://api.zinndigital.com/v1/carts/{cartId}/checkout \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{  }'

Та нэвтэрсэн байна уу? Таны хяналтын самбар дахь API консол нь таны бодит байгууллагын ID болон өөрийн түлхүүрийг автоматаар бөглөж, шууд ажиллаж буй API рүү хүсэлт илгээх тул та бодит хариуг харах боломжтой болно. Энэ төгсгөлийн цэгийг API консол дээр нээх

Дэлгэрэнгүй

Converts the cart to an immutable order: re-prices every line, re-verifies each domain availability token (a stale/taken one is a 409, with no charge), computes tax, places the order and charges it wallet-first. Fulfilment (provisioning/registration) then runs asynchronously as a Temporal workflow — this call never blocks on it (§2.9); poll the order status or the resource it produces. An Idempotency-Key header is required: a retried checkout returns the same order and never charges twice. Requires billing.payment.manage.

Параметрүүд

НэрТөрөлЗаавал шаардлагатайЭнэ юу вэ
cartId (path)UuidТиймThe cart's id.
Idempotency-Key (header)stringҮгүйClient-generated key that makes an unsafe request replay-safe: the server stores the first response and returns it verbatim for repeats.

Хүсэлтийн бие

НэрТөрөлЗаавал шаардлагатайЭнэ юу вэ
billing_countryobjectҮгүйISO 3166-1 alpha-2 country for the tax jurisdiction.
availability_tokensobjectҮгүйdomain_name → the availability token issued by the domain search endpoint. Required for every domain_register line; each is re-verified at checkout and a stale one is a 409.
gatewayobjectҮгүйThe payment rail the customer chose at checkout — one of the codes getPaymentOptions returned for this organization and currency. Omit it and the order is charged wallet-first…
expected_total_minorobjectҮгүйThe order total the checkout page displayed to the customer, in minor units. Send it and checkout refuses with 422 when the basket no longer comes to that figure; omit it…

Хариу үйлдэл

НэрТөрөлЗаавал шаардлагатайЭнэ юу вэ
idUuidТиймUUIDv7 identifier — sortable by creation time (docs/02 §8).
org_idUuidТиймUUIDv7 identifier — sortable by creation time (docs/02 §8).
human_refstringТиймHuman-friendly order reference.
statusOrderStatusТиймAn order's lifecycle state (docs/31 §4.3).
currencyCurrencyCodeТиймISO 4217 currency code (money is minor units + this code — CLAUDE.md §2.8).
subtotal_minorintegerТийм
tax_minorintegerТийм
discount_minorintegerТийм
total_minorintegerТийм
billing_countryobjectҮгүй
placed_atobjectҮгүй
created_atstringТийм
updated_atstringҮгүй
linesOrderLine[]Тийм
paymentsPayment[]Тийм

Энэ төгсгөл цэгээс буцааж болох алдаанууд

401 · 403 · 404 · 409 · 422 · 429