API URL

POST /api/v2/order/info

Request

Request Parameters

NameTypeRequiredDescription
pidinteger(int64)YProject id
noncestringY6 random string
timestampinteger(int64)YTimestamp
signstringYSignature
cregis_idstringYCregis unique id
Request Example
{
    "cregis_id": "po20240703132452000",
    "pid": 1382528827416576,
    "nonce": "hwlkk6",
    "timestamp": 1688004243314,
    "sign": "d6eef2de79e39f434a38efb910213ba6"
}

Response

Response Result

NameTypeDescription
codestringReturn code
msgstringReturn message
dataobjectReturn data

Response data Object

NameTypeDescription
cregis_idstringCregis unique id
order_idstringused by the merchant to assign their own internal order ID to a payment
order_amountstringOrder transaction amount, defined by the merchant
order_currencystringOrder currency code, i.e. ISO 4217 currency code, such as CNY, HKD, defined by the merchant
created_timeinteger(int64)Order creation timestamp in 13-digit
cancel_timeinteger(int64)Order expiration cancel timestamp in 13-digit
transact_timeinteger(int64)Order transaction timestamp in 13-digit
valid_timeinteger(int32)Validation time in minute (within 10 to 60 minutes) for a payment, a payment will be expired after this assigned validation timeframe
statusstringOrder Status:
new - Initial status of the order
paid - The order has been successfully paid
expired - The order has exceeded the valid time
paid_over - Payment exceeds the order amount
paid_partial - Payment is less than the order amount
payer_idstringMerchant to assign their own internal user ID to associate with a payment
payer_namestringPayer’s name
payer_emailstringPayer’s email
remarkstringFor the merchant to make remarks about a payment
payment_detailarrayPayment details
payment_infoarrayPayment related information
order_detailsObjectThe breakdown details of an order, each item will be displayed on the Cregis checkout page
settlement_statusstringOrder settlement status:
unsettled : settlement not processed yet
settling : settlement processing
settled : settlement completed
settlement_typestringSettlement type:
system : settlement is handled automatically
manual •: settlement is handled manually
sub_merchantObjectIf the merchant has a sub merchant assigned under this acquiring project, it can be used by the merchant to assign their own internal sub merchant ID to associate with a payment

payment_detail object

NameTypeDescription
payment_addressstringPayment wallet address (Pay to address)
from_addressstringPayer’s wallet address (Pay from address)
receive_amountstringThe amount of the order after exchange rate conversion
receive_currencystringThe order currency code after exchange rate conversion
pay_amountstringActual received amount
pay_currencystringReceived currency
exchange_ratestringExchange rate
tx_idstringTransaction hash

payment_info object

NameTypeDescription
payment_addressstringWallet address that receives payment
token_symbolstringcrypto asset symbol
blockchainstringBlockchain network
token_namestringcrypto token name
logo_urlstringcrypto token logo
token_decimalsintegercrypto token decimal places
receive_amountstringThe amount of the order after exchange rate conversion
receive_currencystringThe order currency code after exchange rate conversion
exchange_ratestringCurrency exchange rate
asset_logostringcrypto asset logo

order_details object

NameTypeRequiredDescription
shopping_costdecimalNShipping cost of the order
tax_costdecimalNTax amount of the order
itemsJSONArrayStringNThe breakdown details of each item in the order

items object

NameTypeRequiredDescription
item_idstringNThe unique identifier of a payment in the merchant’s system
item_namestringNName of an item purchase
item_pricedecimalNUnit price of an item
price_currencystringNISO 4217 3-character currency code. This is the currency associated with the order amount field
item_quantityinteger(int64)NQuantity of an item ordered

sub_merchant object

NameTypeRequiredDescription
sub_merchant_idstringNID of sub merchant
sub_merchant_namestringNName of sub merchant
Response Example
{
    "code": "00000",
    "msg": "ok",
    "data": {
        "cregis_id": "po1420761885130752",
        "order_id": "merchant_order_id_123",
        "order_amount": "5",
        "order_currency": "HKD",
        "created_time": 1734328473070,
        "cancel_time": null,
        "transact_time": null,
        "valid_time": 60,
        "status": "new",
        "payer_id": "payer001",
        "payer_name": "payer",
        "payer_email": "[email protected]",
        "remark": "收银台备注",
        "payment_detail": null,
        "payment_info": [
            {
                "payment_address": "0xf9d70ab23195cfc9c0c14b384a1fd3a3f12cd4f8",
                "token_symbol": "USDT",
                "blockchain": "BNB-BSC",
                "token_name": "USDT-BEP20",
                "logo_url": "https://static.cregis.io/pic/coin/USDT-BNB%[email protected]",
                "token_decimals": 18,
                "receive_amount": "0.642951",
                "receive_currency": "USDT",
                "exchange_rate": "0.1285902181",
                "asset_logo": "https://static.cregis.io/pic/coin/tether%[email protected]"
            },
            {
                "payment_address": "TX8GZJfLYPtmzRgd3FoiXuCHbptiQ37NSM",
                "token_symbol": "USDT",
                "blockchain": "TRON",
                "token_name": "USDT-TRC20",
                "logo_url": "https://static.cregis.io/pic/coin/[email protected]",
                "token_decimals": 6,
                "receive_amount": "0.642951",
                "receive_currency": "USDT",
                "exchange_rate": "0.1285902181",
                "asset_logo": "https://static.cregis.io/pic/coin/tether%[email protected]"
            }
        ],
        "order_details": {
            "items": [
                {
                    "item_id": "1",
                    "item_name": "Product1",
                    "item_price": 123,
                    "price_currency": "HKD",
                    "item_quantity": 1
                },
                {
                    "item_id": "1",
                    "item_name": "Product2",
                    "item_price": 124,
                    "price_currency": "HKD",
                    "item_quantity": 1
                }
            ],
            "shopping_cost": 10.88,
            "tax_cost": 100
        },
        "settlement_status": "unsettled",
        "settlement_type": "",
        "sub_merchant": {
            "sub_merchant_id": "123",
            "sub_merchant_name": "kg"
        }
    }
}