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 |
---|---|---|---|
| Used to deliver orders where the fulfillment method is | array of | Required for |
| The URL at which the recipient can claim the transferred tickets. If there are multiple URLs please concatenate them with a | string | Required for Optional for N/A for |
| The primary market source / system from which tickets were transferred for the consumer and CS teams knowledge. | One of:
| Optional but recommended to avoid CS issues and clarification needed from sellers. |
tickets
Object
Name | Description | Value Type | Required |
---|---|---|---|
| The specific seat number | | Required |
or
or
| For the supplied seat number the barcode, MLB TicketID, or MLB Verification ID | string | At least one is required. |
| 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 |
Examples
Completing A Mobile Transfer Order
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 |
---|---|---|
Complete a Barcode delivery order for an MLB Authorized Broker | {
"tickets": [
{
"seat": "1",
"barcode": "AAAABBBBCCCCDDDD",
"seller_email": "abctickets@example.com"
},
{
"seat": "2",
"barcode": "BBBBCCCCDDDDEEEE",
"seller_email": "abctickets@example.com"
},
]
} or {
"tickets": [
{
"seat": "1",
"primary_ticket_id": "123456789",
"seller_email": "abctickets@example.com"
},
{
"seat": "2",
"primary_ticket_id": "123456790",
"seller_email": "abctickets@example.com"
},
]
} or | HTTP/1.1 204 No Content |