Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Page Properties
labelapi_docs_orders
NameOrders / Print Etickets
DescriptionPrint Retrieve the etickets that have been uploaded to this order.
TypeGET
URL/v9/orders/:order_id/print_etickets
Credential TypeAPI|User
Supports PaginationN/A

Long Description

Return all of the etickets that have been uploaded for the items in the order.  Etickets are PDFs encoded with Base64, so they must be decoded on the receiving end.

Parameters

Name
Description
Value Type
Required
Type
Presence
Location
order_idThe ID of an order for your BrokerageIntegerRequiredURI
item_idReturn only the etickets for this order item IDintegerIntegerOptionalQuery

 

Examples

RequestResponse
/v9/orders/111/print_etickets 

 

 

Code Block
languageruby
themeConfluencelanguageruby
{
  "files" : [
    {
      :item_id => 2222,
      :content => "<base64 encoded file>"
    },
    {
      :item_id => 2223,
      :content => "<base64 encoded file>"
    }
  ]
}