public

POST /v1/public/cart/{token}/items

Add a domain to an anonymous cart.

सभी public एंडपॉइंट्स

प्रमाणन

यह एंडपॉइंट सार्वजनिक है। यह कोई क्रेडेंशियल और कोई संगठन नहीं लेता है—यह वही है जिसे हमारी अपनी मार्केटिंग साइट और AI उत्तर इंजन पढ़ते हैं।

यह एंडपॉइंट कोई संगठन आईडी नहीं लेता है। आपकी कुंजी पहले से ही उस संगठन की पहचान करती है जिससे वह संबंधित है, और प्रतिक्रिया उसी के दायरे में है।

इसे आज़माएँ

कोणार्कित ब्रैकेट्स में दी गई किसी भी चीज़ को अपने मानों से बदलें, और की प्लेसहोलर को अपने डैशबोर्ड की एक की से बदलें।

curl -X POST https://api.zinndigital.com/v1/public/cart/{token}/items \
  -H "Content-Type: application/json" \
  -d '{ "kind": <string<domain_register>>, "domain": <string>, "tld": <string>, "years": <integer>, "availability_token": <string> }'

साइन इन हैं? आपके डैशबोर्ड में मौजूद API कंसोल आपकी वास्तविक संगठन आईडी और आपकी अपनी कुंजी स्वतः भर देता है, और लाइव API के विरुद्ध अनुरोध चलाता है ताकि आप वास्तविक प्रतिक्रिया देख सकें। इस एंडपॉइंट को API कंसोल में खोलें

विवरण

Adds one `domain_register` item and returns the updated cart. `availability_token` is the `token` from a search result for **this exact name** and is required: it is what proves the item came out of a real, rate-limited search rather than being invented, so a name that search would not sell cannot be added here either. A stale, forged or now-taken name is a `409`. A cart holds at most 20 items, and one name may appear only once. The price is computed by the server; anything sent by the client is ignored.

पैरामीटर

नामप्रकारआवश्यकयह क्या है
token (path)stringहाँThe anonymous cart's opaque bearer token (`zgc_…`), as returned by `createPublicCart`. **It is a credential** — anyone holding it can read and modify the cart — and it travels i…

अनुरोध बॉडी

नामप्रकारआवश्यकयह क्या है
kindstring<domain_register>हाँ
domainstringहाँThe full FQDN (`acme.com`) or just the second-level label (`acme`) alongside `tld`. Both resolve to the same name; a sub-domain is rejected.
tldstringहाँ
yearsintegerहाँ
availability_tokenstringहाँThe `token` from a search result **for this exact name**. Required — it is what proves the item came from a real search, so nothing that search declines to sell can be added by…
privacybooleanनहीं

प्रतिक्रिया

नामप्रकारआवश्यकयह क्या है
idUuidहाँUUIDv7 identifier — sortable by creation time (docs/02 §8).
tokenstringनहींThe bearer token. Returned **only** from `createPublicCart` — it is absent on every subsequent read, because only its digest is stored.
statusstring<open, converted, expired>हाँ
currencyCurrencyCodeहाँISO 4217 currency code (money is minor units + this code — CLAUDE.md §2.8).
product_linestringनहीं
expires_atstringहाँAfter this the cart is gone — reads 404 whether or not it has been purged.
itemsPublicCartItem[]हाँ
totalsPublicCartTotalsहाँPre-tax totals. Tax appears on the order, once a billing country exists.

त्रुटियाँ जो यह एंडपॉइंट लौटा सकता है

404 · 409 · 422 · 429