删除集成模型
DELETE https://api.bimface.com/integrate
根据集成模型id删除集成模型
请求(Request)
Header
key | value | 示例 |
---|---|---|
Authorization | bearer {accessToken} | bearer xxxx-xxxx-xxxx-xxxx |
Content-Type | application/json | … |
Url Parameter
字段 | 类型 | 必填 | 描述 | 示例 |
---|---|---|---|---|
integrateId | Number | Y | 集成模型id | 946486385904448 |
Request Body
无
curl -X DELETE
-H "Authorization: bearer <your accessToken>"
-H "Content-Type: application/json"
"https://api.bimface.com/integrate?integrateId=<your integrateId>"
响应(Response)
HTTP STATUS
200
成功返回
{
"code": "success",
"message": null,
"data": null
}
失败返回
{
"code": "authentication.failed",
"message": "Token was not recognized."
}
错误码
code | 说明 |
---|---|
system.error | BIMFACE系统异常 |
authentication.failed | API访问合法性校验失败 |
integration.not.found | 集成模型不存在 |