GetOrderItemBumpTimes

This call is to retrieve an array of OrderItemBumpTime objects for a business date.

Request Parameters
  • BumpTime DateTimeOffset(optional) Only item bumps occurring on or after the specified time will be retrieved
  • BusinessDate DateTime — Specify the business date you would like to retrieve bumps from
Response Parameters
  • Message string — Returns a PAR POS Error message if the request did not go through. Otherwise, this field will be null.

  • OrderItemBumpTimes Array of OrderItemBumpTime — Order item bump times for this business date

    OrderItemBumpTime Properties
    • BumpTime DateTimeOffset — Bump time of the order item
    • FireTime DateTimeOffset? — Fire time of the order item
    • KitchenQueueId int — Id of the kitchen queue from which the order item was bumped
    • OrderId long — Maps to the Id of Order
    • OrderItemId int — Maps to the Id of the Order Item
    • SendNumber short — Send number of the order item bump
    • SendTime DateTimeOffset? — Send time of the order item
  • ResultCode int — Returns one of the following:

    • 0 — Request went through successfully
    • 1 — Request returned an unknown error
    • 2 — Request was not valid
    • 3 — Server is currently unavailable and unable to receive the request
    • 4 — Access Denied
Headers
  • SOAPAction
    Type: string
    required
Body
required
application/json

SOAP envelope containing the GetOrderItemBumpTimes request with BusinessDate.

Responses
  • text/xml; charset=utf-8
Request Example for post/GetOrderItemBumpTimes
cURL
curl --request POST \
  --url 'https://{server_name_goes_here}.parpos.com/Kitchen.svc?GetOrderItemBumpTimes' \
  --header 'Content-Type: text/xml; charset=utf-8' \
  --header 'AccessToken: your-access-token' \
  --header 'LocationToken: your-location-token' \
  --header 'SOAPAction: "http://www.brinksoftware.com/webservices/kitchen/v1/IKitchenWebService/GetOrderItemBumpTimes"' \
  --data '<soapenv:Envelope
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:v1="http://www.brinksoftware.com/webservices/kitchen/v1"
    xmlns:sys="http://schemas.datacontract.org/2004/07/System">
    <soapenv:Header/>
    <soapenv:Body>
      <v1:GetOrderItemBumpTimes>
        <v1:request>
          <v1:BusinessDate>2024-01-15</v1:BusinessDate>
        </v1:request>
      </v1:GetOrderItemBumpTimes>
    </soapenv:Body>
  </soapenv:Envelope>'
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body>
    <GetOrderItemBumpTimesResponse xmlns="http://www.brinksoftware.com/webservices/kitchen/v1">
      <GetOrderItemBumpTimesResult>
        <Message>Success</Message>
        <ResultCode>0</ResultCode>
        <OrderItemBumpTimes>
          <OrderItemBumpTime>
            <BumpTime>2024-01-15T11:46:00</BumpTime>
            <FireTime>2024-01-15T11:44:00</FireTime>
            <KitchenQueueId>1</KitchenQueueId>
            <OrderId>100012345</OrderId>
            <OrderItemId>101</OrderItemId>
            <SendNumber>1</SendNumber>
            <SendTime>2024-01-15T11:44:00</SendTime>
          </OrderItemBumpTime>
        </OrderItemBumpTimes>
      </GetOrderItemBumpTimesResult>
    </GetOrderItemBumpTimesResponse>
  </s:Body>
</s:Envelope>