1. Team
https://domain/api/team/list
1.1) request body
name |
type |
necessary |
remark |
|
1.2) response body
name |
type |
remark |
success |
bool |
true/false |
errCode |
string |
error code: 0 is success, Non-zero is error code |
errMsg |
string |
error message when error code is non-zero |
data |
list<T> |
bussiness entity |
T description
name |
type |
remark |
name |
string |
team name |
memberCount |
int |
member count |
progress |
float |
team progress rate |
totalAmount |
float |
team deposit amount |
userId |
string |
user ID |
date |
int |
date timestamp |
2. Team detail
https://domain/api/team_detail/list
2.1) request body
name |
type |
necessary |
remark |
teamId |
string |
Y |
team id |
2.2) response body
name |
type |
remark |
success |
bool |
true/false |
errCode |
string |
error code: 0 is success, Non-zero is error code |
errMsg |
string |
error message when error code is non-zero |
data |
list<T> |
bussiness entity |
T description
name |
type |
remark |
orderNo |
string |
order NO. |
memberUserId |
string |
member user id |
depositAmount |
float |
member deposit amount |
commissionRate |
float |
commission rate |
commission |
float |
commission |
orderFinishTime |
int |
order finish timestamp |