PUT POS/PurchaseOrders/{id}/Tickets Try Now

This is all or nothing add tickets operation. If an error occurs while adding tickets then none of the tickets will be added and all the failed tickets along with their index and error message will be returned in the response. Currently in progress...

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id
The purchase order identifier.
string
Required

Body Parameters

Add tickets to purchase order request.

NameDescriptionTypeAdditional information
Tickets
Ticket details.
Collection of TicketDetails
None.
Broadcast
Broadcast Details.
BroadcastDetails
None.

Request Formats

application/json, text/json

Sample:
{
  "Tickets": [
    {
      "SHEventId": 1,
      "EventId": "",
      "VenueId": "",
      "Event": "",
      "EventDate": "2024-03-28T09:28",
      "Venue": "",
      "Section": "",
      "Row": "",
      "Quantity": 9,
      "MaskedQuantity": 10,
      "DoNotWaste": true,
      "Seating": "Any",
      "Stock": "Any",
      "SHDeliveryMethod": "None",
      "TicketSeats": [
        {
          "Seat": 1,
          "Barcode": "",
          "ReferenceNumber": 3
        }
      ],
      "TicketTraits": [
        {
          "StubHubTraitId": 1,
          "Description": "",
          "Seat": 3
        }
      ],
      "PublicNotes": "",
      "InternalNotes": "",
      "BrokerNotes": "",
      "ControlNotes": "",
      "ConnectedStatus": "Any",
      "SplitOptions": {
        "SplitOption": "None",
        "Splits": 1,
        "OverrideSplitOption": true
      },
      "InHandDetails": {
        "InHandStatus": "Any",
        "InHandDays": 1,
        "InHandDate": "2024-03-28T09:28"
      },
      "DeliveryOption": "Any",
      "ReferenceNumber": "",
      "FacePrice": {
        "Currency": "",
        "Amount": 1.0
      },
      "PurchasePrice": {
        "Currency": "",
        "Amount": 1.0
      },
      "SellPrice": {
        "Currency": "",
        "Amount": 1.0
      },
      "Discount": 17.0,
      "Overs": 18.0,
      "Tax": 19.0,
      "Tags": [
        ""
      ],
      "MinimumPayout": 20.0,
      "HideSeats": true,
      "ZonePricing": "",
      "Location": ""
    }
  ],
  "Broadcast": {
    "BroadcastTo": "Default",
    "Zones": [
      {
        "ZoneCode": "Any",
        "Broadcast": true
      }
    ]
  }
}

Response Information

Resource Description

NameDescriptionTypeAdditional information
PurchaseOrderId
The purchase order identifier.
string
None.
PurchaseOrderNumber
The purchase order number.
long
None.
Tickets
The tickets.
Collection of TicketDetails
None.
Status
BulkActionStatus
None.
Errors
Collection of TicketDetails
None.

Response Formats

application/json, text/json

Sample:

Sample not available.