Versions Compared

Key

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


Note

Help us improve the Bimplus API doc by providing your valuable comments. You can find the comment section at the bottom of the page.

Standard Procedure

Info

Developers please use

Newwindowlink
titlehttps://api-stage.bimplus.net/v2
urlhttps://api-stage.bimplus.net/v2
(stage version of Bimplus API) and
Newwindowlink
titlehttp://portal-stage.bimplus.net/
urlhttp://portal-stage.bimplus.net/
(stage version of Shop/Portal) for testing purposes. The production version of the portal is located under 
Newwindowlink
titlehttps://portal.bimplus.net/
urlhttps://portal.bimplus.net/
  and the base url of the API is different for the production version.

Generally, the Bimplus Generally, the Bim+ REST API calls consist of three five steps for accessing the resources.

1.

...

Wiki Markup
\[#Test\]

Developer Registration

Generally our portal 

Newwindowlink
titleAllplan Bimplus
urlhttps://www.allplan.com/uk_en/products/allplan-bimplus/
is the first place of contact of the user for using the Bimplus platform.

Please do the developer registration

Newwindowlink
titlehere
urlhttps://connect-stage.allplan.com/bimplus-freemium.html
.

You can find step by step manual here.

When you have any problems with the registration contact ushere.

2.
Anchor
authenticateToken
authenticateToken
 Authentication token request

2. Receive the authentication token.

3. Use the token for making the API request for any resource.

1. Authentication token request 

The authentication request for accessing the BimPlus resource should be sent in the JSON format using the OIDC Authorization service.

Example:

...

The registered user name and password in the

Newwindowlink
titleBimplus portal
urlhttps://portal-stage.bimplus.net
should be provided here.

For example, you can enable the OAuth 2.0 authentication process directly in your REST-client and it will automatically create and refresh tokens when needed.

It is recommended to use browser UI to login and logout with OIDC server. For this process, you can specify discovery URL and retrieve JSON with latest settings there.


EnvironmentDiscovery URL
Developmenthttps://api-dev.bimplus.net/v2

...


Received token should be directly used to access BimPlus resources after receiving it from OIDC. Refreshing and revoking of the tokens are also managed by OIDC, not BimPlus. Old authentication service in BimPlus remains only for backward compatibility and will be removed in 2026.

Please, use the client_id from the request and regenerate the token (using the same API call with client_id as the additional parameter) for having the possibility to login multiple times at the same time. For more information, see here

...

JSON Request:

Code Block
{
 "user_id" : "test@bimplus.net",
 "password" : "test"
}

Header:

If the Browser based REST clients does not select the Content-Type as "application/json", then please mention the content type in the header(Content-Type: application/json)

Composition Setup


Deck of Cards
idbimRequestTokenrequestToken


Card
Implementation Status
label

Image Removed Service available !

Card
labelHTTP Method
POST POST


Card
labelURL / Resource / Parameters
 Resource: authorize 

URLhttps://api-stage.bimplus.net/v2/authorize

JSON Structure

Name

Mandatory / Optional

Type

Description

user_id

mandatory

string

The email address of the user

password

mandatory

string

The user's password

client_id

optional

string

The identifier of the used client (browser, Apps etc)

application_id

mandatory

string

The id of the application



Card
labelDescription
Obsolete. Authenticates a user and returns a token which can be used for further API calls for accessing the desired resources.


Card
defaulttrue
labelRequest


Code Block
borderColorGreen
titleHeaders

Content-Type: application/json


Code Block
borderColorRed
titleJSON
{
 "user_id" : "test@bimplus.net",
 "password" : "test",
 "application_id" : "6C12345D9B0C4F3C23ABB5721D098F7B"
}



Card
labelResponse


Code Block
borderColorGreen
titleStatus

Status: 200 OK


Code Block
borderColorRed
titleJSON
{
"access_token": "c939ebf5b96646528e0022a35f7a2e679c1874a62c974dcfa75e0132c423a088",
"expires_in": 2591999,
"client_id" : "1FD44C0E-DCB4-11E2-A114-67286288709B"
"token_type": "BimPlus"
}

...



3. Receive the authentication token 

Obsolete. The token is received in the request.

code
Deck of Cards
idbimReceiveTokenrequestToken


Card
labelImplementation Status

Image Removed Service available !

Card
labelHTTP Method
POST POST


Card
labelURL / Resource / Parameters
 Resource: authorize 

URLhttps://api-stage.bimplus.net/v2/authorize


Card
labelDescription
Authenticates
 Authenticates a user and returns a token which can be used for further API calls for accessing the desired resources.


Card
labelRequest


Code Block
borderColorGreen
titleHeaders
Content-Type: application/json


Code Block
borderColorRed
titleJSON
{
 "user_id" : "test@bimplus.net",
 "password" : "test",
 "application_id" : "6C12345D9B0C4F3C23ABB5721D098F7B"
}



Card
defaulttrue
labelResponse


Code Block
borderColorGreen
titleStatus

Status: 200 OK


Code Block
borderColorRed
titleJSON
{
"access_token": "c939ebf5b96646528e0022a35f7a2e679c1874a62c974dcfa75e0132c423a088",
"expires_in": 2591999,
"client_id" : "1FD44C0E-DCB4-11E2-A114-67286288709B"
"token_type": "BimPlus"
}

where,

{

access_token

: "c939ebf5b96646528e0022a35f7a2e67" expires_in: 2591999 token_type: "BimPlus" }

3. Request the desired resource

Using the authentication token, the necessary resource can be accessed and the desired action can be performed on that resource using the BimPlus REST API.

Example:

Get Project List

The token to be used in any further API calls within the HTTP headers

expires_in

The remaining lifetime on the access token in seconds

client_id

The identifier of the used client (browser, Apps etc)

token_type

The type of token – currently we use ‚bimplus‘



4. Get the team information

The team has to be specified and setup through the 

Newwindowlink
titleBimplus portal
urlhttps://portal-stage.bimplus.net
as so-called
Newwindowlink
titleslugs
urlhttp://en.wikipedia.org/wiki/Clean_URL#Slug/
 to present a
Newwindowlink
titleclean URL
urlhttp://en.wikipedia.org/wiki/Clean_URL
. Slugs are lowercase unique identifiers based on English characters and numbers. The team slug will be used to know which tenant database to work on.

Image Removed Service available !
Deck of Cards
idgetTeamInfo
Deck of Cards
idbimGetProjectList
Card
labelImplementation Status


Card
labelHTTP Method
GET GET


Card
defaulttrue
labelURL / Resource / Parameters
 Resource:
projects 
teams 

URLhttps://api-stage.bimplus.net/v2/

<company>/projects

Examplehttps://api.bimplus.net/v2/bimplus/projects

Card

teams


Card
defaulttrue
labelDescription
Get available project list with main properties
 Get all the available teams.


Card
labelRequest


Code Block
borderColorGreen
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json



Card
labelResponse


Code Block
borderColorGreen
titleStatus

Status: 200 OK


Code Block
borderColorRed
titleJSON
[32]
0:  {
id: "c8c8e6f282884f54-449596bf-484c4e9c-929d-0049f1f9d4ffa2fb-44db8379378d"
slug: "nemetschek"
name: "Nemetschek"
owner: "!!!!!_VORTEILSHAUS V40 SD45 Traufeingang"132a78a5-b523-4bf2-8382-7098fac3f803"
totalStorage: 0
storageStats: null
status: "Active"
teamWorksConnection: "RGF0YSBTb3VyY2U9YmltcGx1cy5tYW50cm8ubmV0OyBJbml0aWFsIENhdGFsb2c9QmltUGx1cy5UZW5hbnQuRGV2OyBVc2VyIElkPWRiYmltbWFudHJvdGVzdDsgUGFzc3dvcmQ9MWprdGNudG9DcU9qeGtIMU9QOXg7IENvbm5lY3QgdGltZW91dD0xMA=="
dataStorageStatus: "Online"
}-
1:  {
id: "2d703abe7eab1453-b4f9a4e7-407c4d05-af53983e-a39c5b7ba872031544540e6f"
nameslug: "__5 999 Parklife Salzburg Lehen"
}-
2:  {
id: "c480cc54-aec4-4bef-8d35-93bb090e1aba"
name: "0811-Wohnhaus Kraus - Carport1"
}

Get Project Properties

bimplus-demo"
name: "BimPlus Demo"
owner: "5592c628-588e-f5c0-b08b-088d43de9209"
totalStorage: 53687091200
storageStats: null
status: "Active"
teamWorksConnection: "RGF0YSBTb3VyY2U9YmltcGx1cy5tYW50cm8ubmV0O0luaXRpYWwgQ2F0YWxvZz1CaW1QbHVzLlRlbmFudC5iaW1wbHVzLWRlbW87VXNlciBJRD1iaW1wbHVzLWRlbW87UGFzc3dvcmQ9YWI3ZDRmNDc5ZGM4YjI1Yjg2MDc0Y2ZmZTNiNDBjZmY2OWQwNzQ1YjtDb25uZWN0IFRpbWVvdXQ9MTA="
dataStorageStatus: "Online"
}



5. Request the desired resource

Using the authentication token and the team slug, the necessary resource can be accessed and the desired action can be performed on that resource using the

Newwindowlink
titleBimplus REST API
urlhttps://doc.allplan.com/display/bimpluspublic/Bimplus+API+Reference
.

For example, we can use this token to get the project list.

Image Removed Service available !true
Deck of Cards
idexampleGetProjectList
Deck of Cards
idbimGetProjectProp
Card
labelImplementation Status


Card
labelHTTP Method
GET GET


Card
labelURL / Resource / Parameters
 Resource:
 projects/<project_id>
projects 

URLhttps://api-stage.bimplus.net/v2/

<company>

<team>/projects

/<project_id>

Examplehttps://api-stage.bimplus.net/v2/

bimplus

nemetschek/projects

/c8c8e6f2-4495-484c-929d-0049f1f9d4ff


Card
default
labelDescription
Get all the project properties of a project using its id
 Get available project list with main properties.


Card
defaulttrue
labelRequest


Code Block
borderColorGreen
titleHeaders
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json



Card
labelResponse


Code Block
borderColorGreen
titleStatus

Status: 200 OK


Code Block
borderColorRed
titleJSON
[3]
0:  {
disciplinesid: [0]"c8c8e6f2-4495-484c-929d-0049f1f9d4ff"
name: null
shortDescr: null
thumbnail: null
created: "0001-01-01T00:00:00"
changed: "0001-01-01T00:00:00" "!!!!!_VORTEILSHAUS V40 SD45 Traufeingang"
}-
1:  {
id: "2d703abe-b4f9-407c-af53-a39c5b7ba872"
name: "__5 999 Parklife Salzburg Lehen"
}-
2:  {
id: "c8c8e6f2-4495-484c-929d-0049f1f9d4ffc480cc54-aec4-4bef-8d35-93bb090e1aba"
name: "0811-Wohnhaus Kraus - Carport1"
}




Tools 

Anchor
TestToolsTest
Tools

Plugins for doing REST based calls (REST Client) 

Chrome --> Advanced REST clientPostman - REST clientSimple REST client

...