Versions Compared

Key

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

...

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

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

Code Block
languagejson
{
  "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

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

or

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

or

Code Block
languagejson
{
  "tickets": [
    {
      "seat": 1,
      "verification_id": "verificationId=ANGELS-REGULAR-4068-7JWV4X7ZSR2LYYZBIXVXW4HI",
      "seller_email": "abctickets@example.com"
    }, 
   {
      "seat": 1,
      "verification_id": "verificationId=ANGELS-REGULAR-4068-8JXV4X7ZSR2FHJDSHJSKHW4ZJ",
      "seller_email": "abctickets@example.com"
    },
  ]
}

See Shipments / Show