Aller au contenu principal

Reference

Example Payload
{
"items": [
{
"merchant_supplied_item_id": "string",
"item_availability": "ACTIVE",
"balance_on_hand": 0,
"last_sold_datetime": "string",
"price_info": {
"base_price": 0,
"sale_price": 0,
"tax_rate": 0,
"bottle_fee_deposit": 0,
"base_price_per_measurement_unit": 0
},
"location": {
"aisle": "string",
"zone": "string",
"shelf": "string",
"side": "string",
"additional_details": "string",
"coordinates": {
"x": 0,
"y": 0
}
},
"item_special_hours": [
{
"day_index": "MON",
"start_time": "string",
"end_time": "string",
"start_date": "string",
"end_date": "string"
}
]
}
]
}

Parameter Details

Parameter NameVariable TypeDescriptionPossible ValuesRequired for POSTRequired for PATCHRequired for PULLValidation
merchant_supplied_item_idstringThe MSID used for the item in the Item Management endpointYesYesYesMust not be blank or null
item_availabilitystringItem availability status"ACTIVE" "INACTIVE"YesNoYesMust be one of the enumerated values
balance_on_handintegerCurrent stock level for the itemRecommendedNoRecommended
last_sold_datetimestringDateTime in ISO8601 format of when the item was last sold at the storeRecommendedNoRecommended
price_infoobjectHolds different pricing parametersYesNoYes
locationobjectDefault location of the item in the storeNoNoNo
item_special_hoursobjectSpecial hours when the item will be availableNoNoNo
program_eligibilityArray of stringsProgram eligibility of the item"SNAP," "HSA," "FSA"NoNoNo

Pricing

The price_info object defines all pricing-related attributes for a store-specific item. All price values are expressed in cents (e.g., $12.99 = 1299). For weighted items, per-unit prices are supported.

Parameter NameVariable TypeDescriptionPossible ValuesRequired for POSTRequired for PATCHRequired for PULLValidation
base_priceintegerRegular price in cents for non-weighted items.YesNoYesBetween 1 and 1000000, inclusive
sale_priceintegerOptional promotional or discounted price in cents. Must be ≤ base_price.RecommendedNoRecommended1. Must be < base_price 2. Between 1 and 1000000, inclusive
tax_ratenumberPercent tax rate applied at the item level. Send as a decimal percentage (e.g., 8 = 8%, 5.5 = 5.5%). Do not send as 0.08 or 0.055.NoNoNoBetween 0 and 25, inclusive
bottle_fee_depositintegerDeposit or container fee in cents (e.g., 125 = $1.25).NoNoNoBetween 0 and 4000, inclusive
base_price_per_measurement_unitintegerBase price in cents per measurement unit (e.g., per kg, lb) for weighted items.NoNoNo
loyalty_priceintegerSpecial pricing in cents for loyalty customers.
loyalty_price_per_measurement_unitintegerLoyalty price per unit in cents for weighted items.
"price_info": {
"base_price": 1299,
"sale_price": 1099,
"tax_rate": 7.5,
"bottle_fee_deposit": 125
}

Location

The location object represents physical metadata for the item inside the store. These values help optimize Dasher routing and in-store picking flows. All fields are optional.

FieldTypeDescription
aislestringStore aisle (e.g., "5").
zonestringStore zone or section code (e.g., "Back Wall").
shelfstringShelf identifier (e.g., "Middle").
sidestringShelf side or orientation (e.g., "Left", "Right").
sectionstringBroad store area (e.g., "Frozen Foods").
additional_detailsstringFree-form notes (e.g., "Near checkout freezer").
coordinatesobjectOptional spatial coordinates for robotic or precision picking systems.
raw_textstringRaw location string supplied by merchant.
"location": {
"aisle": "A4",
"shelf": "Middle",
"zone": "Back Wall",
"section": "Cold Beverages"
}

Item Special Hours

The item_special_hours array allows you to control when an item is orderable at a specific store — independent of the store's overall operating hours. This is useful for time-sensitive products such as breakfast-only items, alcohol sales, or limited-time menus.

Each element in the array defines a recurring weekly time block or a temporary date-bound override.

FieldTypeRequiredDescription
day_indexstringYesDay of the week. One of: "MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN".
start_timestringConditionalStart time in local store time, formatted as HH:MM:SS (24-hour). Required unless using date-only range.
end_timestringConditionalEnd time in local store time, formatted as HH:MM:SS. Required unless using date-only range.
start_datestringNoISO-8601 date string indicating when this override begins.
end_datestringNoISO-8601 date string indicating when this override ends.

Examples

Lunch-only item (Mon–Fri)

"item_special_hours": [
{ "day_index": "MON", "start_time": "11:00:00", "end_time": "14:00:00" },
{ "day_index": "TUE", "start_time": "11:00:00", "end_time": "14:00:00" },
{ "day_index": "WED", "start_time": "11:00:00", "end_time": "14:00:00" },
{ "day_index": "THU", "start_time": "11:00:00", "end_time": "14:00:00" },
{ "day_index": "FRI", "start_time": "11:00:00", "end_time": "14:00:00" }
]

Limited-time item every Saturday until a specific date

"item_special_hours": [
{
"day_index": "SAT",
"start_time": "10:00:00",
"end_time": "18:00:00",
"end_date": "2025-09-30"
}
]

Best Practices

  • Times are evaluated in local store time.
  • If item_special_hours is omitted, the item follows the store's general hours.
  • Combine start_date/end_date with day/time to define temporary seasonal periods.
  • Omit a day entirely to make the item unavailable that day.
  • Items cannot be ordered outside store operating hours even if special hours exist.