POST api/UpdateBundledOrder

Request Information

URI Parameters

None.

Body Parameters

BundleOrderUpdateModel
NameDescriptionTypeAdditional information
OrderIds

string

None.

PickupDate

date

None.

ServingSchoolId

globally unique identifier

None.

BundleId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "OrderIds": "sample string 1",
  "PickupDate": "2025-12-06T03:49:58.4820796+00:00",
  "ServingSchoolId": "58176860-beed-4bef-96fa-3c4b8c57f04f",
  "BundleId": 4
}

application/xml, text/xml

Sample:
<BundleOrderUpdateModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.Business.ExpressPoint.ORD">
  <BundleId>4</BundleId>
  <OrderIds>sample string 1</OrderIds>
  <PickupDate>2025-12-06T03:49:58.4820796+00:00</PickupDate>
  <ServingSchoolId>58176860-beed-4bef-96fa-3c4b8c57f04f</ServingSchoolId>
</BundleOrderUpdateModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'BundleOrderUpdateModel'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>