Get Affiliate UIDs
HTTP request Get Affiliate UIDs
- GET
/api/v3/rebate/affiliate/getAffiliateUIDs
Weight(IP): 20, Weight(UID): 20
Request parameters
| Parameter | Parameter type | Required? | Description |
|---|---|---|---|
| uid | Long | No | Invited User UID |
| startTime | Long | No | Start timestamp in UTC (milliseconds) |
| endTime | Long | No | End timestamp in UTC (milliseconds) |
| page | Integer | No | Page number (starting from 1, default 1) |
| pageSize | Integer | No | Page size (default 100) |
Request example
curl "https://api-spot.weex.com/api/v3/rebate/affiliate/getAffiliateUIDs" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "Content-Type: application/json"
Response parameters
| Field Name | Type | Description |
|---|---|---|
| uid | String | Invited User UID |
| registerTime | Long | Registration timestamp, unit: milliseconds |
| kycResult | Boolean | KYC status |
| inviteCode | String | Invitation Code |
| firstDeposit | Long | First deposit time (milliseconds) |
| firstTrade | Long | First trade time (milliseconds) |
| lastDeposit | Long | Latest deposit time (milliseconds) |
| lastTrade | Long | Latest trade time (milliseconds) |
| channelUserInfoItemList | Array | Affiliate user items |
| pages | Integer | Total pages |
| pageSize | Integer | Page size |
| total | Long | Total records |
Response example
{
"pages": 1,
"pageSize": 100,
"total": 98,
"channelUserInfoItemList": [
{
"uid": "3066862172",
"registerTime": 1749797913000,
"kycResult": false,
"inviteCode": "3lft",
"firstTrade": 1738767425000,
"lastTrade": 1744115178000,
"firstDeposit": 1736425200000,
"lastDeposit": 1745038712000
}
]
}