PUT api/autoOrder/{id}/boost/{day}

Update/Add boost day

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Auto Order identifier

globally unique identifier

Required

day

Date of boost

date

Required

Body Parameters

boost object to be saved

AutoOrderBoostDay
NameDescriptionTypeAdditional information
AutoOrderGuid

Collection of byte

None.

AutoOrderIdentifier

globally unique identifier

None.

Date

date

None.

Boost

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "autoOrderGuid": "gUGVpBXh4UOBjCgOxGjSPA==",
  "autoOrderIdentifier": "a4954181-e115-43e1-818c-280ec468d23c",
  "date": "2025-06-14T07:16:48.3177866",
  "boost": 2
}

application/xml, text/xml

Sample:
<AutoOrderBoostDay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Orders.AutoOrders">
  <AutoOrderGuid>gUGVpBXh4UOBjCgOxGjSPA==</AutoOrderGuid>
  <AutoOrderIdentifier>a4954181-e115-43e1-818c-280ec468d23c</AutoOrderIdentifier>
  <Boost>2</Boost>
  <Date>2025-06-14T07:16:48.3177866+00:00</Date>
</AutoOrderBoostDay>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.