You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
JCS-pub API
跳转回README.md 中文 英文
1、桶相关
1.1 创建桶
| 请求 |
| POST |
application/json |
/v1/bucket/create |
| Query |
无 |
| Body |
{
"userID": 1,
"name": "bkt1" //桶名
}
|
| 响应示例 |
| Query |
{
"code": "OK",
"message": "",
"data": {
"bucket": {
"bucketID": 1, // 桶ID
"name": "bkt1" // 桶名
}
}
}
|