Public
Documentation Settings

Magento 2 Daily Deal API & Examples

GETAll Deals

{{magento_base_url}}/rest/V1/mpDailyDeal/deals?searchCriteria[filter_groups][0][filters][0][field]=deal_id&searchCriteria[filter_groups][0][filters][0][value]=1&searchCriteria[filter_groups][0][filters][0][condition_type]=neq
AUTHORIZATIONBearer Token
Token

<token>

HEADERS
Content-Type

application/json

PARAMS
searchCriteria
searchCriteria[filter_groups][0][filters][0][field]

deal_id

searchCriteria[filter_groups][0][filters][0][value]

1

searchCriteria[filter_groups][0][filters][0][condition_type]

neq

GETAdd Discount Label, Countdown Timer Data to the product

{{magento_base_url}}/rest/V1/products?searchCriteria[pageSize]=1
AUTHORIZATIONBearer Token
Token

<token>

HEADERS
Content-Type

application/json

PARAMS
searchCriteria[pageSize]

1

GETAdd Discount Label, Countdown Timer Data to the product by product SKU

{{magento_base_url}}/rest/V1/products/24-MB01
AUTHORIZATIONBearer Token
Token

<token>

HEADERS
Content-Type

application/json

POSTAdd Deals

{{magento_base_url}}/rest/V1/mpDailyDeal/deals
AUTHORIZATIONBearer Token
Token

<token>

HEADERS
Content-Type

application/json

Authorization

Bearer {{admin_token}}

Bodyraw
{
	"deal":{
        "product_name": "Abominable Hoodie-S-Red",
        "product_sku": "MH09-S-Red",
        "status": 5,
        "is_featured": 0,
        "deal_price": 22,
        "deal_qty": 10,
        "sale_qty": 0,
        "store_ids": "0",
        "date_from": "2020-02-06 00:00:00",
        "date_to": "2020-02-15 00:00:00",
        "created_at": "2020-02-14 07:51:51",
        "updated_at": "2020-02-14 07:51:51",
        "discount_label": null
	}
}
Loading