Model Service
- Create a new model
- Get the logged in user's model list
- Get the list of existing models inside a project
- Get the model details
- Get the list of discipines from the model
- Update the model
- Download the model
- Delete the model
Model Service
A Model is basically a technical building plan which could be created or imported.
Create a new model
URL: https://api-stage.bimplus.net/v2/<team_slug>/projects/<project_id>/divisions
Example: https://api-stage.bimplus.net/v2/bimplus/projects/743a24f9-baaa-41b9-90b3-91717238043c/divisions
JSON Structure:
Name |
Mandatory / Optional |
Type |
Description |
---|---|---|---|
name |
mandatory |
string |
Name of the model |
description |
optional |
string |
Short description of the model |
projectId |
will be ignored |
string (guid) |
Id of the project to which the model belongs |
topologyId | optional | string (guid) | Id of the topology to which the model belongs |
disciplines | optional | object | The discipline list of the model |
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
{ "name":"Model D", "description":"Creating a model via API" }
Status: 201 Created
{ "name": "Model D", "description": "Creating a model via API", "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "id": "afbb314f-fdde-43e7-9a49-90e16c1a6131" }
Get the logged in user's model list
URL: https://api-stage.bimplus.net/v2/divisions
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK
[ { "name": "Model A - Vogel", "description": null, "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "topologyId": "fc4be8b1-bf85-4c6f-b9c2-bac6474ddb1d", "id": "d81494b9-9731-4d2e-8fbe-da62f5270182" }, { "name": "Model B - house sketchup", "description": null, "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "topologyId": "2d20d707-9c18-44c0-92f4-282948cd5cf5", "id": "deec1913-2c6e-4580-a40f-7e1ad33a6300" }, { "name": "Model C - Nemetschek", "description": null, "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "topologyId": "d762b01d-6e63-4c68-9192-fc62faccbe87", "id": "e687b45b-d90d-4361-94ab-baf269588c0a" } ]
Get the list of existing models inside a project
URL: https://api-stage.bimplus.net/v2/<team_slug>/projects/<project_id>/divisions
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK
[ { "name": "Model A - Vogel", "description": null, "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "topologyId": "fc4be8b1-bf85-4c6f-b9c2-bac6474ddb1d", "id": "d81494b9-9731-4d2e-8fbe-da62f5270182" }, { "name": "Model B - house sketchup", "description": null, "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "topologyId": "2d20d707-9c18-44c0-92f4-282948cd5cf5", "id": "deec1913-2c6e-4580-a40f-7e1ad33a6300" }, { "name": "Model C - Nemetschek", "description": null, "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "topologyId": "d762b01d-6e63-4c68-9192-fc62faccbe87", "id": "e687b45b-d90d-4361-94ab-baf269588c0a" } ]
Get the model details
URL: https://api-stage.bimplus.net/v2/<team_slug>/divisions/<division_id>
Example: https://api-stage.bimplus.net/v2/bimplus-gmbh/divisions/e687b45b-d90d-4361-94ab-baf269588c0a
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK
{ "name": "Model C - Nemetschek", "description": null, "projectId": "743a24f9-baaa-41b9-90b3-91717238043c", "topologyId": "d762b01d-6e63-4c68-9192-fc62faccbe87", "disciplines": [ "0f106af0-a919-44c5-b211-15bd5ef620b6", "09e623d4-1e12-4a77-b358-ea1d0b28e4a7" ], "id": "e687b45b-d90d-4361-94ab-baf269588c0a" }
Get the list of discipines from the model
URL: https://api-stage.bimplus.net/v2/<team_slug>/divisions/<division_id>/disciplines
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK
[ { "category": "/1/", "name": "ID_BuildingModel", "ifcType": null, "id": "0f106af0-a919-44c5-b211-15bd5ef620b6" }, { "category": "/2/", "name": "ID_RoomModel", "ifcType": null, "id": "09e623d4-1e12-4a77-b358-ea1d0b28e4a7" } ]
Update the model
URL: https://api-stage.bimplus.net/v2/<team_slug>/divisions/<division_id>
Example: https://api-stage.bimplus.net/v2/bimplus-gmbh/divisions/e687b45b-d90d-4361-94ab-baf269588c0a
JSON Structure:
Name |
Mandatory / Optional |
Type |
Description |
---|---|---|---|
name |
mandatory |
string |
Name of the model |
description |
optional |
string |
Short description of the model |
projectId |
optional |
string (guid) |
Id of the project to which the model belongs |
topologyId | optional | string (guid) | Id of the topology to which the model belongs |
disciplines | optional | object | The discipline list of the model |
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
{ "name":"Model D", "description":"Updating the model D" }
Status: 200 OK
Download the model
URL: https://api-stage.bimplus.net/v2/<team_slug>/divisions/<division_id>/download
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK
{ "name": "Model A", "description": null, "projectId": "481338c4-81f2-45bc-864a-bcd048a13a4c", "topologyId": "149e81c4-5270-4b44-b25b-c65fa88a7f14", "disciplines": [ "0f106af0-a919-44c5-b211-15bd5ef620b6", "09e623d4-1e12-4a77-b358-ea1d0b28e4a7" ], "ifcFile": "/bimplus-gmbh/divisions/e45412f8-cd22-4c7e-a5f8-410de55824e2/download", "id": "e45412f8-cd22-4c7e-a5f8-410de55824e2" }
Delete the model
URL: https://api-stage.bimplus.net/v2/<team_slug>/divisions/<division_id>
Example: https://api-stage.bimplus.net/v2/bimplus-gmbh/divisions/e687b45b-d90d-4361-94ab-baf269588c0a
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK