Back

Search

Search

Methods

Inventory

OrderPrintStatus
Orders

RulesEngine /CreateNewCondition

Allows 150 calls per minute

Response: RuleConditionHeader



Use this call to create a new condition.

Parameters

NameTypeDescription
headerConditionHeaderBasicAn object describing the condition to be added.

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/CreateNewCondition

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.

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

Response

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": [
    {
    }
  ]
}