Raw schema
{
"type": "object",
"properties": {
"site_id": {
"type": "string",
"description": "Registered site ID"
},
"cart_id": {
"type": "string",
"description": "Cart ID to checkout"
},
"buyer_delegation_token": {
"type": "string",
"description": "Delegation token from buyer (OAuth-like flow)"
},
"customer_name": {
"type": "string",
"description": "Full name of the customer placing the order"
},
"customer_email": {
"type": "string",
"description": "Email address of the customer placing the order"
},
"customer_phone": {
"type": "string",
"description": "Customer contact / billing phone number (E.164 preferred, e.g. +233201234567)"
},
"shipping_name": {
"type": "string",
"description": "Recipient full name"
},
"shipping_line1": {
"type": "string",
"description": "Shipping address line 1 (street)"
},
"shipping_line2": {
"type": "string",
"description": "Shipping address line 2 (apt/suite) [optional]"
},
"shipping_city": {
"type": "string",
"description": "Shipping city"
},
"shipping_state": {
"type": "string",
"description": "Shipping state or province"
},
"shipping_postal_code": {
"type": "string",
"description": "Shipping postal code"
},
"shipping_country": {
"type": "string",
"enum": [
"AF",
"AX",
"AL",
"DZ",
"AS",
"AD",
"AO",
"AI",
"AQ",
"AG",
"AR",
"AM",
"AW",
"AU",
"AT",
"AZ",
"BS",
"BH",
"BD",
"BB",
"BY",
"BE",
"BZ",
"BJ",
"BM",
"BT",
"BO",
"BQ",
"BA",
"BW",
"BV",
"BR",
"IO",
"BN",
"BG",
"BF",
"BI",
"CV",
"KH",
"CM",
"CA",
"KY",
"CF",
"TD",
"CL",
"CN",
"CX",
"CC",
"CO",
"KM",
"CG",
"CD",
"CK",
"CR",
"CI",
"HR",
"CU",
"CW",
"CY",
"CZ",
"DK",
"DJ",
"DM",
"DO",
"EC",
"EG",
"SV",
"GQ",
"ER",
"EE",
"SZ",
"ET",
"FK",
"FO",
"FJ",
"FI",
"FR",
"GF",
"PF",
"TF",
"GA",
"GM",
"GE",
"DE",
"GH",
"GI",
"GR",
"GL",
"GD",
"GP",
"GU",
"GT",
"GG",
"GN",
"GW",
"GY",
"HT",
"HM",
"VA",
"HN",
"HK",
"HU",
"IS",
"IN",
"ID",
"IR",
"IQ",
"IE",
"IM",
"IL",
"IT",
"JM",
"JP",
"JE",
"JO",
"KZ",
"KE",
"KI",
"KP",
"KR",
"KW",
"KG",
"LA",
"LV",
"LB",
"LS",
"LR",
"LY",
"LI",
"LT",
"LU",
"MO",
"MG",
"MW",
"MY",
"MV",
"ML",
"MT",
"MH",
"MQ",
"MR",
"MU",
"YT",
"MX",
"FM",
"MD",
"MC",
"MN",
"ME",
"MS",
"MA",
"MZ",
"MM",
"NA",
"NR",
"NP",
"NL",
"NC",
"NZ",
"NI",
"NE",
"NG",
"NU",
"NF",
"MK",
"MP",
"NO",
"OM",
"PK",
"PW",
"PS",
"PA",
"PG",
"PY",
"PE",
"PH",
"PN",
"PL",
"PT",
"PR",
"QA",
"RE",
"RO",
"RU",
"RW",
"BL",
"SH",
"KN",
"LC",
"MF",
"PM",
"VC",
"WS",
"SM",
"ST",
"SA",
"SN",
"RS",
"SC",
"SL",
"SG",
"SX",
"SK",
"SI",
"SB",
"SO",
"ZA",
"GS",
"SS",
"ES",
"LK",
"SD",
"SR",
"SJ",
"SE",
"CH",
"SY",
"TW",
"TJ",
"TZ",
"TH",
"TL",
"TG",
"TK",
"TO",
"TT",
"TN",
"TR",
"TM",
"TC",
"TV",
"UG",
"UA",
"AE",
"GB",
"US",
"UM",
"UY",
"UZ",
"VU",
"VE",
"VN",
"VG",
"VI",
"WF",
"EH",
"YE",
"ZM",
"ZW"
],
"description": "ISO 3166-1 alpha-2 country code (e.g., \"US\", \"GB\")"
},
"shipping_phone": {
"type": "string",
"description": "Recipient phone for the shipping address (E.164 preferred); defaults to customer_phone if omitted"
},
"notes": {
"type": "string",
"description": "Optional order notes"
}
},
"required": [
"site_id",
"cart_id",
"buyer_delegation_token",
"customer_name",
"customer_email",
"customer_phone",
"shipping_name",
"shipping_line1",
"shipping_city",
"shipping_state",
"shipping_postal_code",
"shipping_country"
]
}