GET api/Settings/GetEditableProperties?mode={mode}

Getting editable properties

Request Information

URI Parameters

NameDescriptionTypeAdditional information
mode

0 - to get all available editable properties; 1 - to get the properties of the current user.

integer

Required

Body Parameters

None.

Response Information

Resource Description

Result containing a list of editable properties

ObjResultOfProperty[]
NameDescriptionTypeAdditional information
Data

Collection of Property

None.

Error

Error description

string

None.

Success

Flag of successful operation

boolean

None.

ErrorCode

Error code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "data": [
    {
      "id": 1,
      "indexed": true,
      "guid": "6e0ba9b4-2a56-4bd4-8124-79030577b230",
      "locked": true,
      "name": "sample string 5",
      "originName": "sample string 6",
      "readOnly": true,
      "dataType": "sample string 8"
    },
    {
      "id": 1,
      "indexed": true,
      "guid": "6e0ba9b4-2a56-4bd4-8124-79030577b230",
      "locked": true,
      "name": "sample string 5",
      "originName": "sample string 6",
      "readOnly": true,
      "dataType": "sample string 8"
    }
  ],
  "error": "sample string 1",
  "success": true,
  "errorCode": 3
}