1. Configuration
APE
  • 快速开始
  • 项目文件
  • 版本下载
  • REST
    • Auth
      • Get JWT Token
      • Reset Password
      • Refresh JWT Token
    • Service
      • Master
        • Service Status
        • Install Service
        • Uninstall Service
        • Restart Service
    • Configuration
      • Get Master Configuration
        GET
      • Set Master Configuration
        PUT
      • Get Worker Configuration
        GET
      • Set Worker Configuration
        PUT
      • Get Locators Configuration
        GET
      • Get Filters Configuration
        GET
      • Set Filters Configuration
        PUT
    • BP
      • Set BP
      • Get BP
      • Delete BP
    • RTLS
      • Positions
      • Userdata
      • Locators
      • Update Positions
      • Report
      • Dashboard
  • 数据模型
    • ServiceStatus
    • ConfigurationMaster
    • ConfigurationWorker
    • ConfigurationFilters
    • BP
    • ConfigurationLocator
    • Coord
  1. Configuration

Set Master Configuration

开发中
PUT
/api/config/master

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Body 参数application/json必填

示例
{
    "udp_bind_addr": "0.0.0.0:8880",
    "udp_broadcasts": [
        {
            "addr": "255.255.255.255:8880",
            "message": "b'55000C0001010101010180D9"
        }
    ],
    "daemon_http_addr": "http://127.0.0.1:8880",
    "pushers": [
        {
            "addr": "http://127.0.0.1:8880/api/positions",
            "format": "Raw",
            "compress": "None",
            "interval": 1000
        }
    ],
    "worker_thread_count": null,
    "sync_channel_size": null,
    "default_s_height": 1.2,
    "fast_mode": true,
    "log": 0,
    "disable_height_datum": false
}

返回响应

🟢204无内容
该响应没有 Body
修改于 2026-04-25 10:13:38
上一页
Get Master Configuration
下一页
Get Worker Configuration
Built with