PUT api/Conditions/Branches?subLevels={subLevels}
Update a ConditionBranch
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| subLevels |
Number of sublevels to load. Default is all (-1) |
integer |
Default value is -1 |
Body Parameters
The ConditionBranch to be updated
Update_ConditionBranch| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Branch ID |
integer |
None. |
| Name |
Branch Name |
string |
None. |
| DisplayIndex |
Display Index for the Branch |
integer |
None. |
| LogicOperator |
Branch Notes |
LogicOperator |
None. |
Request Formats
application/json, text/json, text/html
Sample:
{
"ID": 1,
"Name": "sample string 2",
"DisplayIndex": 1,
"LogicOperator": 0
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns the updated ConditionBranch and relevant messages
GetConditionBranchResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Branches |
Array of ConditionBranches |
Collection of ConditionBranchStruct |
None. |
| Messages |
Array of messages |
Collection of Message |
None. |
| ServerInformation |
Relevant information regarding the Server |
ServerInformation |
None. |
| VersionInformation |
Relevant information regarding the API's version |
VersionInformation |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{
"Branches": [
{
"ID": 2,
"Name": "sample string 3",
"DisplayIndex": 4,
"LogicOperator": 0,
"SubBranches": [],
"Leaves": [
{
"ID": 2,
"Name": "sample string 3",
"DisplayIndex": 1,
"LinkID": 1,
"LinkObjectType": 10,
"LinkObjectTypeName": "Device",
"LinkObjectName": "sample string 4",
"LinkValue": 1.0,
"LinkCondition": 0
},
{
"ID": 2,
"Name": "sample string 3",
"DisplayIndex": 1,
"LinkID": 1,
"LinkObjectType": 10,
"LinkObjectTypeName": "Device",
"LinkObjectName": "sample string 4",
"LinkValue": 1.0,
"LinkCondition": 0
}
]
},
{
"ID": 2,
"Name": "sample string 3",
"DisplayIndex": 4,
"LogicOperator": 0,
"SubBranches": [],
"Leaves": [
{
"ID": 2,
"Name": "sample string 3",
"DisplayIndex": 1,
"LinkID": 1,
"LinkObjectType": 10,
"LinkObjectTypeName": "Device",
"LinkObjectName": "sample string 4",
"LinkValue": 1.0,
"LinkCondition": 0
},
{
"ID": 2,
"Name": "sample string 3",
"DisplayIndex": 1,
"LinkID": 1,
"LinkObjectType": 10,
"LinkObjectTypeName": "Device",
"LinkObjectName": "sample string 4",
"LinkValue": 1.0,
"LinkCondition": 0
}
]
}
],
"Messages": [
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
},
{
"Severity": 0,
"MessageCode": 1,
"CodeDesc": 2,
"MessageText": "sample string 3",
"RecordNumber": 4
}
],
"ServerInformation": {
"CurrentTimeUTC": "2025-11-09T21:30:03.8472324+10:00",
"BuildDateUTC": "2025-11-09T21:30:03.8472324+10:00"
},
"VersionInformation": {
"Major": 1,
"Minor": 8,
"Hotfix": 0,
"Beta": true,
"Version": "1.8.0.BETA"
}
}