Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

 

Examples

RequestResponse

Retrieve all Etickets from order 111

/v9/orders/111/print_etickets

 

 

 

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

Retrieve just the Etickets for item 2223 or order 111

/v9/orders/111/print_etickets?item_id=2223

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