修改文件组
开发中
PUT
http://localhost:8098/admin/file/group
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
fileGroupId
integer
文件组 ID
displayName
string
文件组名
<= 128 字符
示例
{
"fileGroupId": 0,
"displayName": "string"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://localhost:8098/admin/file/group' \
--header 'Content-Type: application/json' \
--data-raw ''
返回响应
🟢200成功
application/json
Body
code
integer
必需
errMsg
null
必需
data
boolean
必需
示例
{
"code": 200,
"errMsg": null,
"data": true
}
修改于 2024-04-09 15:33:09