POST api/BundleOrders
Request Information
URI Parameters
None.
Body Parameters
BundleOrderRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderIds | string |
None. |
|
| FulfillmentTypeId | integer |
None. |
|
| PickupDate | date |
None. |
|
| ServingSchoolId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"OrderIds": "sample string 1",
"FulfillmentTypeId": 2,
"PickupDate": "2025-12-18T09:49:15.7063754+00:00",
"ServingSchoolId": "c2045101-000a-4b19-9579-4b090b919770"
}
application/xml, text/xml
Sample:
<BundleOrderRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.Order"> <FulfillmentTypeId>2</FulfillmentTypeId> <OrderIds>sample string 1</OrderIds> <PickupDate>2025-12-18T09:49:15.7063754+00:00</PickupDate> <ServingSchoolId>c2045101-000a-4b19-9579-4b090b919770</ServingSchoolId> </BundleOrderRequestModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BundleOrderResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BundleName | string |
None. |
|
| BundleId | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"BundleName": "sample string 1",
"BundleId": 2
}
application/xml, text/xml
Sample:
<BundleOrderResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cybersoft.Primero.OnlineFRE.APIs.Models.Order"> <BundleId>2</BundleId> <BundleName>sample string 1</BundleName> </BundleOrderResponseModel>