Back

Search

Search

Methods

Inventory

OrderPrintStatus
Orders

RulesEngine /CopyAction

Allows 150 calls per minute

Response: RuleAction



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.

Parameters

NameTypeDescription
pkRuleIdInt32The rule which the action belongs to.
targetParentConditionIdInt32The condition to add the action to.
pkActionIdInt32The id of the action to copy.

Permissions

GlobalPermissions.OrderBook.RulesEngineNode

Example Request

The following request format is required for this method.

Endpoint URL

GET | POST https://eu-ext.linnworks.net/api/RulesEngine/CopyAction

Headers

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

Request Body

This is an example of the request structure. Results will vary depending on your data.

pkRuleId=1&targetParentConditionId=1&pkActionId=1

Response

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"
    }
  ]
}