Shipments / Complete





Name

Complete

Description

Completion of Shipments

Type

PUT / POST

URL

/v9/shipments/:id/complete



Long Description

Complete a TMMobile, TMMobileLink, or FlashSeats shipment that is in the pending state.



Parameters

As of 2018-11-29  you may optionally include a URL to claim the tickets with your TM Mobile complete request. Including the URL will reduce the need for you to be contacted if the recipient does not receive the transfer email from the primary box office.



Name

Description

Value Type

Required

Name

Description

Value Type

Required

tickets

Used to deliver orders where the fulfillment method is barcode and the seller needs to provide barcodes/ticket_ids, or verification_ids.

array of tickets objects

Required for barcode shipments

tm_mobile_link

The URL at which the recipient can claim the transferred tickets. 

If there are multiple URLs please concatenate them with a , (comma).



string

Required for TMMobileLink shipments.

Optional for TMMobile shipments.

N/A for FlashSeats shipments.

transfer_source



The primary market source / system from which tickets were transferred for the consumer and CS teams knowledge.

One of:

  • AXS AXS Resale

  • AM Ticketmaster Account Manager

  • BA MLB Ballpark App

  • DICE Dice.fm

  • FS Flash Seats

  • MPV MyProVenue

  • PAC Paciolan

  • RDP Tickets.com

  • SG SeatGeek

  • SH StubHub

  • TM Ticketmaster.com

  • VIV vivenu

Optional but recommended to avoid CS issues and clarification needed from sellers.

tickets Object

Name

Description

Value Type

Required

Name

Description

Value Type

Required

seat

The specific seat number

integer

Required

barcode

or

primary_ticket_id

or

verification_id

For the supplied seat number the barcode, MLB TicketID, or MLB Verification ID

string

At least one is required.

seller_email

 

ProVenue account email address in which these tickets are held.

string

If the seller is an Authorized Broker for the MLB team for which these tickets are for then the ProVenue account_email is required.

 

Examples

Completing A Mobile Transfer Order

Task

Request

Response

Task

Request

Response

Complete a Mobile Transfer order including providing a URL to claim the tickets as well as providing the transfer source so that the buyer knows how the tickets were transferred

{ "tm_mobile_link":"https://am.ticketmaster.com/tdgarden/claim?123123lets213232go123rangers1231241", "transfer_source":"AM" }

 

See Shipments / Show

Completing A Barcode Order

Task

Request

Response

Task

Request

Response

Complete a Barcode delivery order for an MLB Authorized Broker

{ "tickets": [ { "seat": 1, "barcode": "AAAABBBBCCCCDDDD", "seller_email": "abctickets@example.com" }, { "seat": 1, "barcode": "BBBBCCCCDDDDEEEE", "seller_email": "abctickets@example.com" }, ] }

or

{ "tickets": [ { "seat": 1, "primary_ticket_id": "123456789", "seller_email": "abctickets@example.com" }, { "seat": 1, "primary_ticket_id": "123456790", "seller_email": "abctickets@example.com" }, ] }

or

 

See Shipments / Show