...
The authentication request for accessing the BimPlus resource should be sent in the JSON format using the Authentication Service.
Example:
POST http://bimplus-dev.mantro.net/v2/authorize
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)
2. Receive the authentication token
...