# 申请创建球队
* 球队的 is_pass 只有两种状态:0 未审核,1 审核通过
* 球员的 is_pass 有四种状态:0 未提交审核,1 审核中,2 审核通过,3 审核被拒
~~~[api]
post:wechat/api.team/pass
*team_id=0#团队ID
*user_id=1,2#需要审核的球员ID(多个时以英文逗号分割)
<<<
result
{
"code": 0,
"info": "没有需要审核的成员!",
"data": []
}
~~~