Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Page Properties
labelapi_docs_orders
NameOrders Create
DescriptionCreate an Order (or Purchase Order).
TypePOST
URL/v9/orders
Credential TypeAPI|User

...

Name
Description
Type
Presence
Other
is_purchaseIndicates whether you are creating a Purchase Order or an InvoiceBooleanOptionalDefault: false
shipped_itemsArray of Shipments (which contain items)ArrayRequired
payments

Array of Payments which will be applied to the order.


Info

Note: Payments of type 'credit_card' will fail, even in Sandbox, if you have not yet signed up for the Braintree gateway. 

Info

Note: The payment amount does not dictate the total amount of an order. If the payment type is credit_card the payment amount will dictate how much the Client will be charged regardless of the order amount.

The total amount will be calculated as ((price * quantity) of each item) + shipping + service_fee + additional_expense + tax - discount

ArrayOptional
seller_idID of the office for which the order is being created (i.e.: your office)IntegerRequired
buyer_idID of an office which is the buyer for this orderIntegerRequired unless client_id exists
client_idID of a client which is the buyer for this orderIntegerRequired unless buyer_id exists
created_by_ip_addressIP address of the buyerStringRequired for brokerages who have enabled Minfraud
consignmentSet as consignment orderBooleanOptional
shippingAdditional amount added to the order to be labeled as Shipping CostDecimalOptionalMaximum 2 decimal places
service_feeAdditional amount added to the order to be labeled as a Service FeeDecimalOptionalMaximum 2 decimal places
additional_expenseAdditional amount added to the order to be labeled as Additional ExpenseDecimalOptionalMaximum 2 decimal places
taxAdditional amount added to the order to be labeled as TaxDecimalOptionalMaximum 2 decimal places
discountAdditional amount subtracted from the order to be labeled as Discount. (Positive value, but will have a negative effect on the order total)DecimalOptionalMaximum 2 decimal places
promo_code
The name of a promo code applied to an order. Does not automatically apply the discount, this is simply for your own logging purposes.StringOptional
internal_notesInternal Notes will only be visible to the Office that created them. Using an Array of strings will create multiple Internal Notes.String|ArrayOptional
external_notesExternal Notes are visible to both the buyer and the seller and are considered a request. If you have specific requirements please reach out to the seller to ensure your requirements can be met. Using an Array of strings will create multiple External Notes.String|ArrayOptional
instructionsInstructions are visible to both the buyer and the seller and are considered a request. If you have specific requirements please reach out to the seller to ensure your requirements can be met.StringOptional
referenceReference will only be visible to the Office that created them and is recommended for storing something such as a PO or Invoice number from another system.StringOptional

...

Info

Even though Shipped Items is an array you can only have one item per order. If your site has a cart functionality allowing the purchase of multiple items, simply split them into multiple orders.

The exception to this is that you may order multiple items only if all items are owned by the same Office as the one creating the order (the seller_id).



Items Parameters
 

Name
Description
Type
Presence
Other
ticket_group_idID of the ticket group that was soldIntegerRequired for sales orders
pricePrice per ticket at which the ticket group was soldDecimalRequired. Optional if using ticket_hold_idMaximum 2 decimal places
quantityQuantity sold from the ticket groupIntegerRequired
ticket_group_signature
The ticket_group_signature attribute from the ticket group. If enabled for your account, including the ticket_group_signature will prevent an order from being created if the quantity is no longer valid or if the cost has increased. This can be used to help prevent creating orders that have a high likelyhood of being rejected.StringOptional
low_seatLowest seat sold from the ticket groupIntegerOptional*
seat_order"consecutive" or "odd_even"StringOptional*
ticket_group_idID of the ticket group that was soldIntegerRequired for sales orders
ticket_groupFor purchase orders, creates new inventory in the system. See /wiki/spaces/API/pages/9469980 or /wiki/spaces/API/pages/6455302.HashRequired for purchase orders
ticket_hold_idThe ID returned from a /wiki/spaces/API/pages/9469967 or /wiki/spaces/API/pages/9469976 call. If supplied, quantity, price and low_seat from the Hold/Take will be used. You may override the Hold/Take price by supplying a price value.IntegerRequired only if the tickets are Held or Taken
id

The id of an item from an existing order.

When creating/replacing a shipment for an existing order each array element should be an object with a single property, id, with that value being the same as theorder_item_id from the corresponding object within the items array of the order containing the ticket groups to be included in this shipment. e.g.: "items": [{"id": 26117}]


 IntegerRequired only when creating or updating a shipment for an existing order 

...