Delivery options
Our system provides the expected delivery method for each ticket group based on the ticket format & time to event.
To get this information you need to make a call to /v9/shipments/suggestion
and pass in the ticket group id. If the format is physical, then you need to pass in the address_id
or full address attributes (street_address, extended_address, locality, region, postal_code, country_code)
The following attributed need to be supplied for the delivery portion of the order post.
For Eticket, TMMobile, GuestList, Paperless, FlashSeats delivery:
Name | Type | Description |
---|---|---|
type | String | What form the ticket(s) will be delivered in. |
email_address_id | Integer | Destination email for tickets to be delivered to. |
cost | Integer | Cost of delivery. |
For FedEx delivery:
Name | Type | Description |
---|---|---|
type | String | What form the ticket(s) will be delivered in. |
address_id | Integer | Destination for tickets to be delivered to. |
cost | Integer | Cost of delivery. |
phone_number_id | Integer | Phone number associated with delivery. |
service_type | String | The type of FedEx delivery on the order. Options are: LEAST_EXPENSIVE(default) , INTERNATIONAL_FIRST , INTERNATIONAL_PRIORITY_SATURDAY_DELIVERY , INTERNATIONAL_PRIORITY , INTERNATIONAL_ECONOMY , FIRST_OVERNIGHT , PRIORITY_OVERNIGHT_SATURDAY_DELIVERY , FEDEX_2_DAY_SATURDAY_DELIVERY , PRIORITY_OVERNIGHT , STANDARD_OVERNIGHT , FEDEX_2_DAY , FEDEX_EXPRESS_SAVER . |
ship_to_company_name | String | Company name if order is being delivered to a company. |
ship_to_name | String | Name of customer that order is being delivered to. |
signature_type | String | Type of signature required for delivery. Options are: INDIRECT(only available for residential addresses) , DIRECT , ADULT , NO_SIGNATURE_REQUIRED(only available for residential addresses) . Default is "" . (optional) |
residential | Boolean | Indicates whether or not address is residential (optional) |
WillCall delivery uses type
, address_id
, cost
, and ship_to_name
, all of which can be found on the Fedex delivery table above.
Eticket, TMMobile, GuestList, Paperless, FlashSeats:
"delivery": {
"type":"Eticket",
"email_address_id":1965046,
"cost":5.00
}
FedEx:
"delivery": {
"type":"FedEx",
"address_id":123,
"cost":15.00,
"phone_number_id":123,
"service_type":"STANDARD_OVERNIGHT",
"ship_to_company_name":null,
"ship_to_name":"John Smith"
"signature_type":"INDIRECT",
"residential":true
}
WillCall:
"delivery": {
"type":"WillCall",
"address_id":123,
"cost":0.00,
"ship_to_name":"John Smith"
}
TMMobile:
"delivery": {
"type":"TMMobile",
"email_address_id":123,
"cost":0.00,
}
GuestList:
"delivery": {
"type":"GuestList",
"email_address_id":123,
"cost":0.00
}
Paperless:
"delivery": {
"type":"Paperless",
"email_address_id":123,
"cost":0.00
}
FlashSeats:
"delivery": {
"type":"FlashSeats",
"email_address_id":123,
"cost":0.00
}