Get Agent Customer Kyc Result
- Rate limit: 10/sec/UID
Description
- startTime and endTime should be both set or both left blank
- It will return yesterday's KYC data(00:00-23:59UTC+8) by default if there is no startTime/endTimeset.
- Data update frequency: 1 hour
HTTP Request
- GET /api/broker/v1/agent/customer-kyc-result
Request Example
curl "https://api.bitget.com/api/broker/v1/agent/customer-kyc-result?uid=3125195374&startTime=1694016000000&endTime=1694332799000" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:zh-CN" \
-H "Content-Type: application/json" \
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
startTime | String | No | Start time, maximum range of 90 days |
endTime | String | No | End time, maximum range of 90 days. |
pageNo | String | No | Page number |
pageSize | String | No | Page size, 100 default, Max 1000 |
uid | String | No | UID |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 163123213132,
"data": {
"userList": [
{
"uid": "435435345",
"kycResult": "passed"
}
],
"endId": "435435345"
}
}
Response Parameters
Parameter | Type | Description |
---|---|---|
uid | String | UID |
kycResult | String | KYC Resultpassed not_passed |
endid | String | The last userID on the page |