接入API

POST /api/v2/order/info

请求

请求参数

名称类型是否必须描述
pidinteger(int64)项目编号
noncestring6位随机字符串
timestampinteger(int64)时间戳
signstring签名
cregis_idstringcregis订单编号
请求示例
{
    "cregis_id": "po20240703132452000",
    "pid": 1382528827416576,
    "nonce": "hwlkk6",
    "timestamp": 1688004243314,
    "sign": "d6eef2de79e39f434a38efb910213ba6"
}

返回

返回数据

名称类型描述
codestring返回码
msgstring返回信息
dataobject返回数据

返回数据 data 对象

名称类型描述
cregis_idstringcregis订单编号
order_idstring调用方订单编号
order_amountstring订单交易金额
order_currencystring订单交易金额单位
created_timeinteger(int64)订单创建时间【13位时间戳】
cancel_timeinteger(int64)订单取消时间 【13位时间戳】
transact_timeinteger(int64)订单支付完成时间【到账时间 13位时间戳】
valid_timeinteger(int64)提交订单时设置的超时时间【单位/分钟】
statusstring订单支付状态(new-待支付,paid-已支付,expired-订单超出有效时间,paid_over-付款超出订单金额 paid_partial-付款小于订单金额)
payer_idstring付款人信息
payer_namestring付款人名称
payer_emailstring付款人邮箱
remarkstring订单备注信息
payment_detailarray交易信息数组
payment_infoarray地址信息数组
order_detailsObject商品信息
settlement_statusstring结算状态【unsettled /settling/settled】
settlement_typestring结算类型 【system/manual】
sub_merchantstring子商户信息

payment_detail object

名称类型描述
payment_addressstring充值地址
from_addressstringfrom地址
receive_amountstring汇率转换后的订单金额
receive_currencystring汇率转换后的订单货币代码
pay_amountstring实际到账金额
pay_currencystring到账货币代码
exchange_ratestring货币汇率
tx_idstring交易hash

payment_info object

名称类型描述
payment_addressstring充值地址
token_symbolstring货币标识
blockchainstring货币网络
token_namestring货币名称
logo_urlstring货币logo地址
token_decimalsinteger货币精度
receive_amountstring汇率转换后的订单金额
receive_currencystring汇率转换后订单货币代码
exchange_ratestring货币汇率
asset_logostring资产logo
返回示例
{
    "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"
        }
    }
}