Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 764 Bytes

edit_files.md

File metadata and controls

48 lines (37 loc) · 764 Bytes

编辑/查看文件

地址

/api/files?uuid={{new_instance_uuid}}&remote_uuid={{service_uuid}}&apikey={{apikey}}

请求方式

PUT
Content-Type: application/json; charset=utf-8

请求体(Body)

{
  // 目标文件
  "target": "eula.txt",
  // 如果是编辑文件,则需加入 text 参数,如果无此参数,则返回内容
  "text": "TEXT"
}

响应

查看文件

{
  "status": 200,
  "data": "eula=true", // 文件内容
  "time": 1633185763950
}

编辑文件

{
  // ↓ 会返回的值及其解释:200(正常,并返回相应内容);400(请求参数不正确);403(无权限);500(服务器内部错误)
  "status": 200,
  "data": true,
  "time": 1633220390638
}