POST
/api/v1/nodes/{nodeId}/renew边缘节点renew
路径参数
| 名称 | 类型 | 说明 |
|---|---|---|
| nodeId | string | — |
请求体
结构: RenewNodeReq
常见错误码
40001参数非法
40010缺少 X-Tenant-Id 请求头
40400资源不存在
40303超出授权路数
调用示例
POST /api/v1/nodes/{nodeId}/renew
curl -X POST 'https://your-host/api/v1/nodes/<nodeId>/renew' \
-H 'X-App-Key: AK_xxx' \
-H 'X-Timestamp: <毫秒时间戳>' \
-H 'X-Nonce: <随机串>' \
-H 'X-Signature: <Base64(HMAC-SHA256(待签串, appSecret))>'
-H 'Content-Type: application/json' \
-d '<按规范中的 RenewNodeReq 结构传参>'示例中的签名口径与"签名规范"页一致;生产环境请把 appSecret 放在服务端,不要下发到浏览器或 App。