Create an Item Discount with Condition Rule Promotion
POST Create an Item Discount with Condition Rule Promotion
https://useast.api.elasticpath.com/v2/rule-promotions
Parameters
Headers
| Name | Required | Type | Description | 
|---|---|---|---|
| Authorization | Required | string | The Bearer token required to get access to the API. | 
Body
For descriptions about the fields, refer to Rules Promotion API overview.
Request Example
curl -X POST https://useast.api.elasticpath.com/v2/rule-promotions \
     -H "Authorization: Bearer XXXX" \
     -H "Content-Type: application/json" \
     -d $ {
      "data": {
        "type": "rule_promotion",
        "name": "Buy X get Y 50%",
        "description": "Buy X get Y 50%",
        "enabled": true,
        "automatic": true,
        "start": "2024-02-01",
        "end": "2024-02-27",
        "rule_set": {
            "rules": {
                "strategy": "item_sku",
                "operator": "in",
                "args": [
                    "sku1"
                    ]
            },
            "actions": [
                {
                    "strategy": "item_discount",
                    "args": [
                        "percent",
                        50
                    ],
                    "condition": {
                        "strategy": "and",
                        "children": [
                            {
                                "strategy": "item_sku",
                                "operator": "in",
                                "args": [
                                    "sku2"
                                ]
                            }
                        ]
                    }
                }
            ]
        }
    }
}
Response Example
201 Created
{
    "data": {
        "type": "rule_promotion",
        "id": "2977c021-0f15-4674-914e-c19f868e179a",
        "store_id": "9cf58db9-f5bb-4507-b8f8-831c61e5de06",
        "name": "Buy X get Y 50%",
        "description": "Buy X get Y 50%",
        "enabled": true,
        "automatic": true,
        "rule_set": {
            "rules": {
                "strategy": "item_sku",
                "operator": "in",
                "args": [
                    "sku1"
                ]
            },
            "actions": [
                {
                    "strategy": "item_discount",
                    "args": [
                        "percent",
                        50
                    ],
                    "condition": {
                        "strategy": "and",
                        "children": [
                            {
                                "strategy": "item_sku",
                                "operator": "in",
                                "args": [
                                    "sku2"
                                ]
                            }
                        ]
                    }
                }
            ]
        },
        "start": "2024-02-01T00:00:00Z",
        "end": "2050-01-01T00:00:00Z",
        "meta": {
            "timestamps": {
                "created_at": "2024-04-12T13:13:32.422Z",
                "updated_at": "2024-04-12T13:13:32.422Z"
            }
        }
    }
}