Versions Compared

Key

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

...

Deck of Cards
idrequestToken
Card
labelHTTP Method

POST

Card
labelURL / Resource / Parameters

Resource: authorize 

URLhttps://api.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 mandatory

string

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

application_id

optional

string

The id of the application


where application_id will be one of the following:

Art-No

App

Platform

UID

Editions

 

 

 

AM00050000

bim+ Starter Edition

Cloud

df2dbfa44a2b89704d38e07175be8298

 

 

 

 

AM00050050

bim+ Business Edition

Cloud

2efa4c5a58b189e04f0af8879d6c3fca

 

 

 

 

AM00050100

bim+ Enterprise Edition

Cloud

685b24cf716e211e64f126d5347074e3

 

 

 

 

BTW

 

 

 

AM00050200

bim+ TeamWorks

Win

f6c5e0004f0ae73c485324a900a28a14

 

 

 

 

bim+ Apps

 

 

 

AM0005311

bim+ Explorer

iPad

c08181961a0cf078d740f402a18610a1

AM0005321

bim+ MyHouse Photo

iPad

13f8972af21a76036717f0e51db64184

AM0005331

bim+ Problem Spotter

iPad

13fe742a744959f7f849c30b63bcc4c0

AM0005341

bim+ Viewer

iPad

c087f3e4f242e974e6ca99f74cc4f6a0

 

 

 

 

3rd Party Apps

 

 

 

 

 

 

 

bim+ Services

 

 

 

AM00055000

bim+ WebViewer

Browser

 

 

 

 

 

Card
labelDescription

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",
 "client_id" : "1FD44C0E-DCB4-11E2-A114-67286288709B"
}
Card
labelResponse
Code Block
borderColorGreen
titleStatus
Status: 200 OK


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

...