Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 681 Bytes

new_remote_services.md

File metadata and controls

42 lines (32 loc) · 681 Bytes

新增远程服务

地址

/api/service/remote_service

请求方式

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

查询参数(Query)

apikey: String; // API 密钥

请求体(Body)

{
  "apiKey": "123456", //密钥
  "port": 25565,
  "ip": "127.0.0.1",
  "remarks": "Postman 创建测试" // 备注
}

响应

{
  // ↓ 会返回的值及其解释:200(正常,并返回相应内容);400(请求参数不正确);403(无权限);500(服务器内部错误)
  "status": 200,
  "data": "1e787acae9ff4b6a8957890cce9328f1", //此 uuid 是新建后的配置文件 uuid
  "time": 1633173550906
}