Versions Compared

Key

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

...

The team has to be specified and setup through the 

Newwindowlink
titlebimplus
urlhttp://www.bimplus.net/
portal .  The team name and the project name need to be specified and setup as so-called slugs to present a clean URL. Slugs are lowercase unique identifiers based on English characters and numbers.The  The team slug will be used to know which tenant database to work on. If you are not sure of your team slug please use our user administration service.

Deck of Cards
idgetTeamInfo
Card
labelImplementation Status

Image Added Service available !

Card
labelHTTP Method

POST

Card
labelURL / Resource / Parameters

Resource: authorize 

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

Card
labelDescription

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

Authorization: BimPlus c939ebf5b96646528e0022a35f7a2e67
Content-Type: application/json


Code Block
borderColorRed
titleJSON
{
 "user_id" : "test@bimplus.net",
 "password" : "test"
}
Card
defaulttrue
labelResponse
Code Block
borderColorGreen
titleStatus

Status: 200 OK


Code Block
borderColorRed
titleJSON
{
access_token: "c939ebf5b96646528e0022a35f7a2e67"
expires_in: 2591999
token_type: "BimPlus"
}

4. Request the desired resource

...