POST api/order/OnlineOrder/{onlineOrderID}/ReallocateOnlineOrderSoftAllocations?isCheckout={isCheckout}

Reallocates the Soft Allocations for all Online Order Details in an Online Order

Request Information

URI Parameters

NameDescriptionTypeAdditional information
onlineOrderID

The ID of the Online Order

integer

Required

isCheckout

Whether the allocations are to be reallocated for the final part of the Checkout process, or normal browsing

boolean

Required

Body Parameters

None.

Response Information

Resource Description

An Operation Result with a failure reason if unsuccessful

IOperationResult
NameDescriptionTypeAdditional information
IsSuccessful

boolean

None.

ValidationErrors

Dictionary of string [key] and string [value]

None.

Value

Object

None.

Response Formats

application/xml, text/xml

Sample:
<OperationResult>
  <IsSuccessful>False</IsSuccessful>
  <ValidationErrors />
  <Value />
</OperationResult>

application/json, text/json

Sample:
{
  "IsSuccessful": false,
  "ValidationErrors": {}
}