Create Prepay Order
Developing
Request
Body Params application/json
{
"timestamp": "{{$date.timestamp}}",
"nonceStr": "{{$string.uuid}}",
"version": "1.0.0",
"sign": "",
"bizContent": {
"appId": "{{appId}}",
"merchantCode": "{{merchantCode}}",
"merchOrderNo": "{{$string.uuid}}",
"title": "test order",
"totalAmount": "100",
"transCurrency": "MMK",
"timeoutExpress": "100m",
"callbackInfo": "test",
"businessParam": "test",
"capture": "true",
"creditUnit": "Cash",
"availablePayChannels": "walletPayment,kbzPayment,bankCardPayment"
}
}
Request Code Samples
curl --location '/platform/order/create' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
"timestamp": "{{$date.timestamp}}",
"nonceStr": "{{$string.uuid}}",
"version": "1.0.0",
"sign": "",
"bizContent": {
"appId": "{{appId}}",
"merchantCode": "{{merchantCode}}",
"merchOrderNo": "{{$string.uuid}}",
"title": "test order",
"totalAmount": "100",
"transCurrency": "MMK",
"timeoutExpress": "100m",
"callbackInfo": "test",
"businessParam": "test",
"capture": "true",
"creditUnit": "Cash",
"availablePayChannels": "walletPayment,kbzPayment,bankCardPayment"
}
}'
Responses
application/json
{
"code": "SUCCESS",
"success": true,
"message": "SUCCESS",
"data": {
"prepayOrderNo": "1970333225738829824",
"merchOrderNo": "949da67c-5c88-4584-ac88-01ed2316f3dc",
"nonceStr": "335889bcb8b1482fb709e7a44ef33e0e",
"sign": "wiEzRw8aL89BuITsLLmM+RfT29oqM5A6cApZoyfdIRtugwaoFkK9BcrzPanCLfCN6GoMtSlsAc93j9YuO58kovs6uscwfe8W0iaWOvnRrF0KSgWxV4YbclcMoZBcqf6/dSrvh12CfYXF+L1e+eSdA/hhqyFYWieCDS/bO8qeucE+QSf3QYk0cK32OCn2k+kK/XL669aurKocKRCyNm06XrCxJnZUbnVaue0FmI3RKdA1bXbycEF6g8pR/920ASAhlZebpeX5Ip6N0lwFAV+yRemi1YjPW17LdvYq7bYb5obQrI25V5vR7u9zJHG9pzOXmTKZA1a/nwu3fqnYK6KMdg=="
}
}
Modified at 2026-08-28 08:24:02