Orders / Pend to Seller

NameOrders Pend to Seller
DescriptionTransition an open order to the pending state.
TypePOST
URL/v9/orders/:id/pend_to_seller

Long Description

An order that is in the open state is invisible to the broker who is selling the tickets.  Generally while the order is open, it is being reviewed for possible fraud on the buyer end before being passed on to the selling broker.

Call this action to transition a purchase order that you own to the pending state, which will pass the order to the broker for acceptance.

Parameters

Name
Description
Value Type
Required
paymentsAny additional payments that should be applied to the order.Array (See Payments / Create)Optional
order_item_linksChange seat details about a specific item in the orderArrayOptional

Order Item Links Parameters

Name
Description
Value Type
Required
idID of the Order Item Link from Orders / ShowIntegerRequired in order_item_links array
low_seatLowest seat number of the itemIntegerRequired in order_item_links array
orderThe seat order, "consecutive" or "odd_even"StringRequired in order_item_links array
costNew cost of the itemDecimalRequired in order_item_links array

Examples

RequestResponse
/v9/orders/:id/pend_to_seller 
{
   "order_item_links":[
      {
         "id":"23454",
         "low_seat":"4",
         "order":"consecutive"
      }
   ]
}

 

See Orders / Show.