圈子管理

创建圈子

POST /circle/circle/create

需要登录!

Request Body

Name
Type
Description

name

string

名字(1~30个字)

cdesc

string

描述(1~255个字)

interval

string

打卡间隔(枚举类型:hour, day, week, month)

max_goalnum

integer

最大目标数

logo

string

logo,暂不支持

{
    "code": 0,
    "msg": "ok",
    "data": 5
}

修改圈子

POST /circle/circle/update

需要登录!

Request Body

Name
Type
Description

id

integer

ID

name

string

名字(1~30个字)

cdesc

string

描述(1~255个字)

logo

string

logo,暂不支持

获取所有圈子列表

POST /circle/circle/getalllist

两种分页参数二选一

Request Body

Name
Type
Description

index

integer

索引偏移量(>=0)

page

integer

页码(>=1)

获取我的圈子列表

POST /circle/circle/getmylist

需要登录!

Last updated

Was this helpful?