Get pool record list
Developing
Request
Body Params application/json
{
"appkey": "{{APPKEY}}",
"timestamp": "{{TIMESTAMP}}",
"nonce": 95977,
"sign": "{{SIGN}}",
"pool_object_id": 387,
"page":1,
"page_size":10
}
Request Code Samples
curl --location 'https://oapi.eiotclub.com/api/v3/pool/record/list' \
--header 'Content-Type: application/json' \
--data '{
"appkey": "",
"timestamp": "",
"nonce": 95977,
"sign": "",
"pool_object_id": 387,
"page":1,
"page_size":10
}'
Responses
application/json
{
"code": "string",
"message": "string",
"data": {
"list": [
{
"pool_record_id": 0,
"order_no": "string",
"out_trade_no": "string",
"pool_type_code": "string",
"status_code": 0,
"expire_timestamp": 0,
"active_timestamp": 0,
"total": 0,
"used": 0,
"create_at": 0
}
]
}
}
Modified at 2025-12-05 05:44:33