Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Deck of Cards
idbimGetElementForTemplate
Card
defaulttrue
labelURL / Resource / JSON Structure
Resource: element-types/attributetemplates

URLhttps://api-stage.bimplus.net/v2/<team_slug>/element-types/attributetemplates

Examplehttps://api-stage.bimplus.net/v2/bimplus/element-types/attributetemplates?filter=type=Wall 

Filter: When filter is defined the API will return only element-types which Type contains requested substringsub-string, e.g. if filter is "type=Wall" will be returned all element-types which Type contains substring Wall like . Like Wall, CurtainWall, WallCovering, StructuralAnalysisWall, etc. eg: https://api-stage.bimplus.net/v2/bimplus/element-types/attributetemplates?filter=type=Wall

Card
labelHTTP Method
 GET
Card
labelDescription
 Retrieve a list of element-types to which an attribute template can be assigned. Please remember that attribute template can't be assigned to all element-types (i.e v2/<team_slug>/element-types)
Card
labelRequest
Code Block
borderColorGreen
langxml
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
labelResponse
Code Block
borderColorGreen
langxml
titleStatus
Status: 200 OK
Code Block
borderColorRed
langxml
titleJSON
 [
    {
        "type": "BuildingObject",
        "category": "/1/",
        "name": "ID_BuildingModel",
        "ifcType": null,
        "id": "0f106af0-a919-44c5-b211-15bd5ef620b6"
    },
    {
        "type": "BuildingElement",
        "category": "/1/10/",
        "name": "ID_Bauteilobjekte",
        "ifcType": null,
        "id": "34c606d8-77aa-4c1c-a19d-cf9cf222e6c5"
    },
    {
        "type": "Wall",
        "category": "/1/10/1/",
        "name": "ID_ArchWall",
        "ifcType": "ID_IFCWallStandardCase",
        "id": "10074eef-9418-4d64-9c6d-23932835a7f1"
    },
.....] 

...