This page is under construction

Update a setting
Resource: application/settings/<setting_id>

URLhttps://api-stage.bimplus.net/v2/application/settings/<setting_id>

Example:https://api-stage.bimplus.net/v2/application/settings/c47b737c-6727-4832-bcd1-57ead714ae34

JSON Structure

Name

Mandatory / Optional

Type

Description

id

will be ignored

string

Name of the project

key

optional

string

Key(i.e name) of the setting. It should be unique.

value

optional

string

Value for the key

updatewill be ignoredstring(date)The update date of the setting
 PUT
Update the value of a setting.
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
{
        "key": "AutoLoadLastModel",
        "value": "No"
}
Status: 200 OK

Get info about a setting
Resource: application/settings/<setting_id>

URLhttps://api-stage.bimplus.net/v2/application/settings/<setting_id>

Example:https://api-stage.bimplus.net/v2/application/settings/c47b737c-6727-4832-bcd1-57ead714ae34

 GET
 Get details of a specified user setting.
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Status: 200 OK
{
        "key": "AutoLoadLastModel",
        "value": "Yes",
        "updated": "2015-08-19T00:04:16.387",
        "id": "c47b737c-6727-4832-bcd1-57ead714ae34"
}

Delete a setting
Resource: application/settings/<setting_id>

URLhttps://api-stage.bimplus.net/v2/application/settings/<setting_id>

Example:https://api-stage.bimplus.net/v2/application/settings/c47b737c-6727-4832-bcd1-57ead714ae34

 DELETE
 Deletes a specified pin.
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Status: 200 OK