Export to Excel Service
- Export all the Bimplus Topics inside a project into Excel
- Export the list of Bimplus Topics to Excel
- Export all the objects of a particular element-type inside a project into Excel
Export to Excel Service
Topics or geometry objects in Bimplus can be exported into Excel using this service.
Export all the Bimplus Topics inside a project into Excel
URL: https://api-stage.bimplus.net/v2/<team_slug>/projects/<project_id>/issues/export/excel
Example:https://api-stage.bimplus.net/v2/bimplus/projects/5cd37c77-d341-4ab2-9f0d-44467955b218/issues/export/excel
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK
{
    "attachment_id": "134c6df9-7952-4b2b-844b-a6b47f69fd5e"
}
 Export the list of Bimplus Topics to Excel
URL: https://api-stage.bimplus.net/v2/<team_slug>/issues/export/excel
Example:https://api-stage.bimplus.net/v2/bimplus/issues/export/excel
JSON Structure:
| Name | Mandatory / Optional | Type | Description | 
|---|---|---|---|
| issuesId | mandatory | JSON array | List of Topic ids | 
| excelFileName | ignored | string | Name of the excel file | 
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
{
  "excelFileName": "ExportedProject.xlsx",
  "issuesId": [
    "4744b3a2-db5f-46d4-8da1-38d9cfe5aafa",
    "b98616dc-17c0-d4bc-6d2c-abb4aa017447"
  ]
}
 Status: 200 OK
{
    "attachment_id": "134c6df9-7952-4b2b-844b-a6b47f69fd5e"
}
 Export all the objects of a particular element-type inside a project into Excel
URL: https://api-stage.bimplus.net/v2/<team_slug>/projects/<project_id>/objects/export/excel?typeId=<elementType_guid>
Example:https://api-stage.bimplus.net/v2/bimplus/projects/de87fc4d-cb5d-44ba-b2ea-1d96ac564a8a/objects/export/excel?typeId=10074eef-9418-4d64-9c6d-23932835a7f1
The same output, could be got in the form of JSON response (not in excel format) using v2/<team_slug>/projects/<project_id>/ elements?typeId=xxx
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088 Content-Type: application/json
Status: 200 OK
{
    "attachment_id": "134c6df9-7952-4b2b-844b-a6b47f69fd5e"
}
 