# 获取构件材质

GET https://api.bimface.com/data/v2/integrations/{integrateId}/files/{fileIdHash}/elements/{elementId}/materials

# 参数

Authorization * Bearer {accessToken} string
*为必填项
# Path
elementId * 构件ID string
fileIdHash * 构件所属的模型ID string
integrateId * 集成模型ID integer (int64)
*为必填项

# 响应

HTTP代码 说明 类型
200 OK GeneralResponse«List«MaterialInfo»»
401 Unauthorized -
403 Forbidden -
404 Not Found -
# 200响应参数
GeneralResponse«List«MaterialInfo»»
名称 说明 类型
code 状态代码 string
data 返回数据 < MaterialInfo >array
name 材质名称 string
id 材质ID string
parameters 材质相关参数 < PropertyGroup >array
items 属性数据 < PropertyItem >array
extension 拓展属性 object
unit 单位 string
code 属性码 string
orderNumber int32
valueType 参数值类型 int32
value 参数值 object
key 特性 string
group 属性分组类型 string
message 提示消息 string

# 生成

  • */*
  • application/json

# HTTP请求示例

# 请求 path
https://api.bimface.com/data/v2/integrations/1738888866720224/files/1938888813662976/elements/281218/materials
# 请求 header
"Authorization: Bearer cn-e9725999-0b36-4c0e-bdca-38ea88888888"

# HTTP响应示例

# 响应 200
{
  "code" : "success",
  "data" : [ {
    "id" : "268712",
    "name" : "玻璃 - 图案",
    "parameters" : [ {
      "group" : "dimension",
      "items" : [ {
        "key": "颜色",
        "unit": "",
        "value": "14014668",
        "valueType": 1
      }, 
      {
        "key": "透明度",
        "unit": "",
        "value": "0",
        "valueType": 1
      },]
    } ]
  } ],
  "message" : null
}