# 批量获取集成模型管道构件流动贴图方向
POST https://api.bimface.com/data/v1/pipe/integrations/{integrate-id}/elements/uv-direction
# 说明
批量获取管道构件流动贴图方向。目前用于pdms格式文件的流向动画生成。
# 参数
# Header
Authorization * | Bearer {accessToken} | string |
# Path
integrate-id * | 集成文件id | integer (int64) |
# Body
fileIdHash | 集成模型子文件hash值 | string |
elementIds | 构件id列表 | < string >array |
# 响应
HTTP代码 | 说明 | 类型 |
---|---|---|
200 | OK | GeneralResponseV1«List«EssentialPipingElementResponseBean»» |
201 | Created | - |
401 | Unauthorized | - |
403 | Forbidden | - |
404 | Not Found | - |
# 200响应参数
GeneralResponseV1«List«EssentialPipingElementResponseBean»»
名称 | 说明 | 类型 |
---|---|---|
code | 样例: "code" | string |
data | 返回数据 | < EssentialPipingElementResponseBean >array |
message | 样例: "message" | string |
# 消耗
application/json
# 生成
*/*
application/json
# HTTP请求示例
# 请求 path
https://api.bimface.com/data/v1/pipe/integrations/0/elements/uv-direction
# 请求 header
"Authorization: Bearer dc671840-bacc-4dc5-a134-97c1918d664b"
# 请求 body
[ {
"elementIds" : [ "string" ],
"fileIdHash" : "1223445667788"
} ]
# HTTP响应示例
# 响应 200
{
"code": "bimfaceservice-0000",
"message": null,
"data": [
{
"id":"123",
"uvDirection":"0",
"fileIdHash":"1234567"
},
{
"id":"456",
"uvDirection":"1",
"fileIdHash":"1234567"
},
{
"id":"789",
"uvDirection":"2",
"fileIdHash":"1234567"
}
]
}