Cancel Follow
Unfollow a trader and stop copy trading.
HTTP Request
POST /api/v1/copy/mix-follower/cancel-follow
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| productType | string | Yes | Product type. Only FUSD is supported |
| traderUid | string | Yes | Trader user ID to unfollow |
Request Example
curl -X POST "https://open-api.bydoxe.com/api/v1/copy/mix-follower/cancel-follow" \
-H "ACCESS-KEY: your-api-key" \
-H "ACCESS-SIGN: your-signature" \
-H "ACCESS-PASSPHRASE: your-passphrase" \
-H "ACCESS-TIMESTAMP: 1659076670000" \
-H "Content-Type: application/json" \
-d '{
"productType": "FUSD",
"traderUid": "100001"
}'
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | object | Response data |
| > result | string | Result message |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": {
"result": "success"
}
}
Error Codes
| Code | Message |
|---|---|
| 45001 | Parameter productType cannot be empty |
| 45001 | Invalid productType |
| 45001 | Parameter traderUid cannot be empty |
| 45002 | User not found |
| 45003 | Follow setting not found |
| 50000 | System error |