URI
POST /koodrive/ose/v1/share/exit
请求参数
表2 请求Body参数 参数 | 是否必选 | 参数类型 | 描述 |
|---|
shareIds | 是 | Array of strings | 退出分享ID列表 |
响应参数
状态码:200
表3 响应Body参数 参数 | 参数类型 | 描述 |
|---|
code | Integer | 响应码 |
msg | String | 响应信息 |
subResponseList | Array of ShareSubResponse objects | 子响应列表 |
表4 ShareSubResponse 参数 | 参数类型 | 描述 |
|---|
code | Integer | 子响应码 |
msg | String | 子响应信息 |
请求示例
POST /koodrive/ose/v1/share/exit
{
"shareIds" : [ "string" ]
} 响应示例
状态码:200
OK
{
"code" : "string",
"msg" : "string",
"subResponseList" : [ {
"code" : "string",
"message" : "string"
} ]
}