Orders / 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 |
---|---|---|---|
payments | Any additional payments that should be applied to the order. | Array (See Payments / Create) | Optional |
order_item_links | Change seat details about a specific item in the order | Array | Optional |
Order Item Links Parameters
Name | Description | Value Type | Required |
---|---|---|---|
id | ID of the Order Item Link from Orders / Show | Integer | Required in order_item_links array |
low_seat | Lowest seat number of the item | Integer | Required in order_item_links array |
order | The seat order, "consecutive" or "odd_even" | String | Required in order_item_links array |
cost | New cost of the item | Decimal | Required in order_item_links array |
Examples
Request | Response |
---|---|
/v9/orders/:id/pend_to_seller | |
{ "order_item_links":[ { "id":"23454", "low_seat":"4", "order":"consecutive" } ] } |
See Orders / Show. |