# 删除场景
DELETE https://api.bimface.com/scene/{sceneId}
# 说明
通过sceneId,删除对应场景。
# 参数
# Header
Authorization * | Bearer {accessToken} | string |
# Path
sceneId * | 场景ID | integer(int64) |
# 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 | OK | GeneralResponse«string» |
204 | No Content | - |
401 | Unauthorized | - |
403 | Forbidden | - |
# 200响应参数
GeneralResponse«string»
名称 | 说明 | 类型 |
---|---|---|
code | 状态代码 | string |
data | 返回数据 | string |
message | 提示消息 | string |
# 生成
*/*
application/json
# HTTP请求示例
# 请求 path
https://api.bimface.com/scene/2017707858581568
# 请求 header
"Authorization: Bearer cn-e9725999-0b36-4c0e-bdca-38ea88888888"
# HTTP响应示例
# 响应 200
{
"code" : "success",
"data" : "success",
"message" : null
}