Use this call to copy a condition, its subconditions and actions.
Name | Type | Description |
---|---|---|
pkRuleId | Int32 | The rule to which the conditions belong. |
targetParentConditionId | Nullable<Int32> | The condition to which the copy should be appended as a child. |
pkConditionId | Int32 | The condition to copy. |
includeChildren | Boolean | Include subconditions? |
includeActions | Boolean | Include actions? |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/RulesEngine/CopyCondition
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.
pkRuleId=1&targetParentConditionId=1&pkConditionId=1&includeChildren=true&includeActions=true
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": [
{
}
]
}