Use this call to copy an action from one condition to another condition. Actions may not be attached to the rule header or condition nodes with subconditions.
Name | Type | Description |
---|---|---|
pkRuleId | Int32 | The rule which the action belongs to. |
targetParentConditionId | Int32 | The condition to add the action to. |
pkActionId | Int32 | The id of the action to copy. |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/RulesEngine/CopyAction
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&pkActionId=1
This is an example of the response JSON. Results will vary depending on your data.
{
"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"
}
]
}