eventData 字段与实时回调推送格式一致。单次查询时间跨度不超过 31 天。Authorization: Bearer ********************curl --location 'https://cgm-api.lingcgm.com/open/data/history?userId=&eventType=&deviceType=&startTime=&endTime=&pageNum=&pageSize=&includeEcgVoltages=' \
--header 'Authorization: Bearer <token>'{
"timestamp": 1718000000123,
"code": 200,
"message": "操作成功",
"data": {
"records": [
{
"eventId": 1234567890123456800,
"eventType": "bp_event",
"userId": 10001,
"eventTime": 1718003600,
"deviceType": 2,
"eventData": {
"sbp": 120,
"dbp": 80,
"hr": 72
}
}
],
"total": 1,
"size": 20,
"current": 1,
"pages": 1
},
"errorData": null
}