Use this call to create a new condition.
Name | Type | Description |
---|---|---|
header | ConditionHeaderBasic | An object describing the condition to be added. |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/RulesEngine/CreateNewCondition
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
header={
"pkConditionId": 1,
"fkParentConditionId": 1,
"fkRuleId": 2,
"ConditionName": "sample string 3",
"Enabled": true,
"Conditions": [
{
"pkConditionItemId": 1,
"fkConditionId": 2,
"FieldName": "sample string 3",
"Evaluation": 0,
"Values": [
"sample string 1"
],
"KeyValue": "sample string 4"
}
]
}
This is an example of the response JSON. Results will vary depending on your data.
{
"pkConditionId": 1,
"fkRuleId": 2,
"RunOrder": 3,
"Enabled": true,
"ConditionName": "sample string 5",
"fkParentConditionId": 6,
"Conditions": null,
"Action": {
"pkActionId": 1,
"ActionName": "sample string 2",
"ActionType": 1,
"ActionValue": "sample string 3",
"fkConditionId": 4,
"RuleVersion": 5,
"fkRuleId": 6,
"Properties": [
{
"ActionPropertyId": 1,
"ActionId": 2,
"DisplayName": "sample string 3",
"Value": "sample string 4"
}
]
},
"Subrules": [
{
}
]
}