viagogo SellerListings (Preview) API

Preview the changes you want to make to your inventory.

Operations 3

POST /events/{eventId}/sellerlistingpreview Preview a seller listing #
POST /sellerlistings/{listingId}/updatepreview Preview a seller listing update #
POST /sellerlistingpreview Preview a seller listing for a requested event #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/viagogo-sellerlistings-preview-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

viagogo-sellerlistings-preview-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: viagogo Inventory SellerListings (Preview) SellerListings (Preview) API
  version: 2.249.0.0
  x-logo:
    url: https://img.vggcdn.net/img/assets/logo/viagogo_logo_apidocs.png
    backgroundColor: '#222222'
  description: Preview the changes you want to make to your inventory.
servers:
- url: https://api.viagogo.net/v2
  description: Production
- url: https://sandbox.api.viagogo.net/v2
  description: Sandbox
security:
- OAuth2:
  - read:sales
  - read:sellerlistings
  - read:user
  - write:requestedevents
  - write:sales
  - write:sellerlistings
  - write:user
tags:
- name: SellerListings (Preview)
  description: Preview the changes you want to make to your inventory.
paths:
  /events/{eventId}/sellerlistingpreview:
    post:
      tags:
      - SellerListings (Preview)
      summary: Preview a seller listing
      description: Creates a preview of a seller listing. The listing will not have an `id` and will not actually be created on the viagogo marketplace.
      operationId: SellerListings_CreateListingPreview
      parameters:
      - name: eventId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        x-name: body
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/PostSellerListingPreviewRequest'
      responses:
        '200':
          description: ''
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/SellerListing'
        '403':
          $ref: '#/components/responses/forbidden'
          description: null
        '400':
          $ref: '#/components/responses/validation_failed'
          description: null
        '401':
          $ref: '#/components/responses/requires_authentication'
          description: null
        '500':
          $ref: '#/components/responses/internal_server_error'
          description: null
      security:
      - OAuth2:
        - write:sellerlistings
  /sellerlistings/{listingId}/updatepreview:
    post:
      tags:
      - SellerListings (Preview)
      summary: Preview a seller listing update
      description: Creates a preview of an update to a seller listing. The updates will not actually be applied to the listing on the viagogo marketplace.
      operationId: SellerListings_UpdateListingPreview
      parameters:
      - name: listingId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        x-name: body
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/PostSellerListingPreviewRequest'
      responses:
        '200':
          description: ''
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/SellerListing'
        '403':
          $ref: '#/components/responses/forbidden'
          description: null
        '400':
          $ref: '#/components/responses/validation_failed'
          description: null
        '401':
          $ref: '#/components/responses/requires_authentication'
          description: null
        '500':
          $ref: '#/components/responses/internal_server_error'
          description: null
      security:
      - OAuth2:
        - write:sellerlistings
  /sellerlistingpreview:
    post:
      tags:
      - SellerListings (Preview)
      summary: Preview a seller listing for a requested event
      description: Creates a preview of a seller listing for an event requested by the current user. The listing will not have an `id` and will not actually be created on the viagogo marketplace.
      operationId: SellerListings_CreateListingPreviewForRequestedEvent
      requestBody:
        x-name: body
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/PostRequestedEventSellerListingPreviewRequest'
      responses:
        '200':
          description: ''
          content:
            application/hal+json:
              schema:
                $ref: '#/components/schemas/SellerListing'
        '403':
          $ref: '#/components/responses/forbidden'
          description: null
        '400':
          $ref: '#/components/responses/validation_failed'
          description: null
        '401':
          $ref: '#/components/responses/requires_authentication'
          description: null
        '500':
          $ref: '#/components/responses/internal_server_error'
          description: null
      security:
      - OAuth2:
        - write:sellerlistings
        - write:requestedevents
components:
  schemas:
    SeatingDetail:
      type: object
      additionalProperties: false
      required:
      - section
      properties:
        section:
          type:
          - string
          - 'null'
          description: The section of the ticket(s).
        row:
          type:
          - string
          - 'null'
          description: The row of the ticket(s).
        seat_from:
          type:
          - string
          - 'null'
          description: The first in a contiguous block of seats to which the tickets have been allocated.
        seat_to:
          type:
          - string
          - 'null'
          description: The last in a contiguous block of seats to which the tickets have been allocated.
        state:
          description: This field indicates whether the listing's seating is visible on the website on the venue map.
          oneOf:
          - $ref: '#/components/schemas/SeatingState'
    VenueRequest:
      type: object
      description: A venue is a location where an event takes place.
      additionalProperties: false
      required:
      - name
      - city
      properties:
        name:
          type:
          - string
          - 'null'
          description: The name of the venue.
        city:
          type:
          - string
          - 'null'
          description: The name of the city where the venue is located.
        state_province:
          type:
          - string
          - 'null'
          description: The name of the State or Province where the venue is located.
    Country:
      type: object
      additionalProperties: false
      properties:
        code:
          type:
          - string
          - 'null'
          description: The two-letter ISO 3166 code for the country.
        name:
          type:
          - string
          - 'null'
          description: The name of the country.
        _links:
          oneOf:
          - $ref: '#/components/schemas/CountryLinks'
    TicketType:
      type: object
      additionalProperties: false
      properties:
        type:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        id:
          type: integer
          format: int32
        _links:
          oneOf:
          - $ref: '#/components/schemas/TicketTypeLinks'
    SellerListingExternalEventInformation:
      type: object
      description: Information about the listing's event on other platforms.
      additionalProperties: false
      properties:
        id:
          type: integer
          description: An identifier for the event on an external platform.
          format: int32
        platform:
          type:
          - string
          - 'null'
          description: The name of the external platform.
        url:
          type:
          - string
          - 'null'
          description: The URL of the event on the external platform.
        venue_id:
          type:
          - integer
          - 'null'
          description: An identifier for the event's venue on an external platform.
          format: int32
        performer_id:
          type:
          - integer
          - 'null'
          description: An identifier for the event's category on an external platform.
          format: int32
    ListingConstraintsLinks:
      title: ListingConstraintsLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
    EmbeddedVenueLinks:
      title: EmbeddedVenueLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
    BarcodeInformation:
      type: object
      description: A set of barcodes for a seat.
      additionalProperties: false
      properties:
        seat_ordinal:
          type:
          - integer
          - 'null'
          description: An ordinal number for a seat.
          format: int32
        seat:
          type:
          - string
          - 'null'
          description: Seat number.
        row:
          type:
          - string
          - 'null'
          description: Row of ticket.
        status:
          type:
          - string
          - 'null'
          description: Status of the barcode. Can be `Received` or `FailedValidation`
        barcode_values_sha256_hashed:
          type:
          - array
          - 'null'
          description: SHA256-hashed barcode(s) for this seat.
          items:
            type: string
    EmbeddedEvent:
      type: object
      description: An event on the viagogo platform.
      additionalProperties: false
      properties:
        id:
          type:
          - integer
          - 'null'
          description: The event identifier.
          format: int32
        name:
          type:
          - string
          - 'null'
          description: The name of the event.
        start_date:
          type:
          - string
          - 'null'
          description: The date when the event starts.
          format: date-time
        end_date:
          type:
          - string
          - 'null'
          description: The date when the event ends.
          format: date-time
        on_sale_date:
          type:
          - string
          - 'null'
          description: The date when tickets for the event will go onsale.
          format: date-time
        date_confirmed:
          type:
          - boolean
          - 'null'
          description: True if the event start and end date have been confirmed; Otherwise, false.
        merged_events:
          type:
          - array
          - 'null'
          description: The list of event ids that are merged into this event.
          items:
            $ref: '#/components/schemas/MergedEntity'
        _links:
          oneOf:
          - $ref: '#/components/schemas/EmbeddedEventLinks'
    SeatingRequest:
      type: object
      description: Represents the seating information for a ticket(s) in a Venue.
      additionalProperties: false
      required:
      - section
      properties:
        section:
          type:
          - string
          - 'null'
          description: The section of the ticket(s).
        row:
          type:
          - string
          - 'null'
          description: The row of the ticket(s).
        seat_from:
          type:
          - string
          - 'null'
          description: The first in a contiguous block of seats to which the tickets have been allocated.
        seat_to:
          type:
          - string
          - 'null'
          description: The last in a contiguous block of seats to which the tickets have been allocated.
        hide_seat_details:
          type:
          - boolean
          - 'null'
          description: Do not display seats pre-purchase. May affect listing visibility in some regions.
    SplitType:
      type: object
      description: The way that the ticket(s) in a listing are allowed to be split up when sold.
      additionalProperties: false
      properties:
        type:
          type:
          - string
          - 'null'
          description: The type of split. Can be Any, None, AvoidOne, AvoidOneAndThree, or Pairs.
        name:
          type:
          - string
          - 'null'
          description: The localised name of the type of split.
        description:
          type:
          - string
          - 'null'
          description: The localised description of the split.
        _links:
          oneOf:
          - $ref: '#/components/schemas/SplitTypeLinks'
    RelistTransaction:
      type: object
      additionalProperties: false
      properties:
        id:
          type:
          - integer
          - 'null'
          format: int32
    CurrencyLinks:
      title: CurrencyLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
    TicketTypeLinks:
      title: TicketTypeLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
    MergedEntity:
      type: object
      description: An entity that has been merged into another entity.
      additionalProperties: false
      properties:
        id:
          type: integer
          description: The identifier for this entity.
          format: int32
    EmbeddedVenue:
      type: object
      description: A venue is a location where an event takes place.
      additionalProperties: false
      properties:
        id:
          type:
          - integer
          - 'null'
          description: The venue identifier.
          format: int32
        name:
          type:
          - string
          - 'null'
          description: The name of the venue.
        city:
          type:
          - string
          - 'null'
          description: The name of the city where the venue is located.
        state_province:
          type:
          - string
          - 'null'
          description: The name of the State or Province where the venue is located.
        latitude:
          type:
          - number
          - 'null'
          description: The latitude for the venue.
          format: double
        longitude:
          type:
          - number
          - 'null'
          description: The longitude for the venue.
          format: double
        _links:
          oneOf:
          - $ref: '#/components/schemas/EmbeddedVenueLinks'
        _embedded:
          oneOf:
          - $ref: '#/components/schemas/EmbeddedVenueEmbeddedResources'
    EmbeddedEventLinks:
      title: EmbeddedEventLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
    ListingNoteLinks:
      title: ListingNoteLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
    Currency:
      type: object
      additionalProperties: false
      properties:
        code:
          type:
          - string
          - 'null'
          description: The ISO 4217 currency code that identifies the currency.
        name:
          type:
          - string
          - 'null'
          description: The name of the currency.
        symbol:
          type:
          - string
          - 'null'
          description: The symbol that identifies the currency.
        decimal_places:
          type:
          - integer
          - 'null'
          description: The number of decimal places used to represent amounts in the currency.
          format: int32
        _links:
          oneOf:
          - $ref: '#/components/schemas/CurrencyLinks'
    SplitTypeLinks:
      title: SplitTypeLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
    Money:
      type: object
      description: Returned for monetary values, such as ticket prices, fees charged and tax amounts.
      additionalProperties: false
      required:
      - amount
      - currency_code
      properties:
        amount:
          type:
          - number
          - 'null'
          description: The decimal amount of the money.
          format: decimal
        currency_code:
          type:
          - string
          - 'null'
          description: The ISO 4217 currency code that the monetary value is represented in.
        display:
          type:
          - string
          - 'null'
          description: A user-friendly string representing the monetary value.
    SellerListingLinks:
      title: SellerListingLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
        event:createsellerlisting:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:constraints:
          description: The constraints applied to this listing.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:contactuswebpage:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:delete:
          description: Delete a listing.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:etickets:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:eticketuploads:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:lmsoptin:
          description: Opt this listing into Last Minute Sales.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:lmsoptout:
          description: Opt this listing out of Last Minute Sales.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:lmspickup:
          description: The pickup instructions for Last Minute Sales.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:optionalverificationrequests:
          description: 'The VerificationRequests that can be resolved in order for the

            listing to be published on some viagogo websites.'
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:pricing:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:publish:
          description: Make seller listing available for purchase.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:saveetickets:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:shipments:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:ticketlocation:
          description: The address where the ticket(s) are located.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:unpublish:
          description: Make the listing unavailable for purchase.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updatedisplaynumberoftickets:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updatefacevalue:
          description: Update face value for this listing.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updateinhandat:
          description: Update the date the seller will have tickets for this listing in hand.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updatenotes:
          description: Update notes for this listing.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updatenumberoftickets:
          description: Update number of tickets available for purchase.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updatepreview:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updateseating:
          description: Update the seating information for the ticket(s) in this listing.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updatesplittype:
          description: Update the way the ticket(s) are allowed to be split up when sold.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updateticketlocation:
          description: Update the address where the ticket(s) are located.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updateticketprice:
          description: Update the price of each ticket in this listing.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:updatetickettype:
          description: Update the type of ticket(s) for this listing.
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:uploadeticket:
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:verificationrequests:
          description: 'The VerificationRequests that must be resolved in order for the

            listing to be published on all viagogo websites.'
          oneOf:
          - $ref: '#/components/schemas/Link'
        sellerlisting:webpage:
          oneOf:
          - $ref: '#/components/schemas/Link'
    PostRequestedEventSellerListingPreviewRequest:
      type: object
      additionalProperties: false
      required:
      - seating
      - ticket_type
      - split_type
      - number_of_tickets
      properties:
        event:
          description: The event information.
          oneOf:
          - $ref: '#/components/schemas/EventRequest'
        venue:
          description: The venue where the event will take place.
          oneOf:
          - $ref: '#/components/schemas/VenueRequest'
        country:
          description: The country where the event will take place.
          oneOf:
          - $ref: '#/components/schemas/CountryRequest'
        ticket_price:
          description: The price of each ticket in the listing.
          oneOf:
          - $ref: '#/components/schemas/Money'
        ticket_proceeds:
          description: The amount that the seller will receive for each ticket sold.
          oneOf:
          - $ref: '#/components/schemas/Money'
        seating:
          description: 'The seating information for the ticket(s) in this listing. For PATCH Requests, you need to pass in all the fields of a Seating to update, even when you only need to update some of the fields. Otherwise the rest of the fields will be set to empty. '
          oneOf:
          - $ref: '#/components/schemas/SeatingRequest'
        face_value:
          description: The price printed on the ticket, not including any booking fees.
          oneOf:
          - $ref: '#/components/schemas/Money'
        ticket_type:
          type:
          - string
          - 'null'
          description: The type of ticket(s) in this listing.
        split_type:
          type:
          - string
          - 'null'
          description: The way that the ticket(s) are allowed to be split up when sold.
        number_of_tickets:
          type:
          - integer
          - 'null'
          description: The number of tickets available for purchase.
          format: int32
        display_number_of_tickets:
          type:
          - integer
          - 'null'
          description: The number of tickets that should be displayed to buyers as available for purchase.
          format: int32
        ticket_location_address_id:
          type:
          - integer
          - 'null'
          description: The identifier of the address where the ticket(s) are located.
          format: int32
        listing_note_ids:
          type:
          - array
          - 'null'
          description: An array of listing note identifiers that provides additional notes on the listing
          items:
            type: integer
            format: int32
        in_hand_at:
          type:
          - string
          - 'null'
          description: The date when the seller will have the tickets in hand.
          format: date-time
        external_id:
          type:
          - string
          - 'null'
          description: An identifier that has been assigned to the listing in an external inventory management system.
        notes:
          type:
          - string
          - 'null'
          description: A comma-separated string of additional notes about the listing
        instant_delivery:
          type:
          - boolean
          - 'null'
        published:
          type:
          - boolean
          - 'null'
          description: True when the listing should be published; Otherwise, false.
        lms_optin:
          type:
          - boolean
          - 'null'
          description: True when the listing should be opted into Last Minute Sales; Otherwise, false.
        eticket_ids:
          type:
          - array
          - 'null'
          description: A array of the identifiers of the E-Tickets to be assigned to the listing.
          items:
            type: integer
            format: int32
        relist_transaction_id:
          type:
          - integer
          - 'null'
          description: Used when relisting tickets previously purchased on Stubhub marketplace. Include the transaction ID in the id value field.
          format: int32
        external_event_information:
          type:
          - array
          - 'null'
          description: Information about the listing's event on other platforms.
          items:
            $ref: '#/components/schemas/SellerListingExternalEventInformation'
        purchase_price_per_ticket:
          description: The purchase price paid by the seller for each ticket in the listing.
          oneOf:
          - $ref: '#/components/schemas/Money'
        total_purchase_price:
          description: The total purchase price paid by the seller.
          oneOf:
          - $ref: '#/components/schemas/Money'
        sales_tax_paid:
          type:
          - boolean
          - 'null'
          description: True if the seller already paid sales tax for the ticket(s); otherwise, false.
        is_ticket_concierge:
          type:
          - boolean
          - 'null'
          description: Whether the listing represents a shorted ticket
        is_auto_po:
          type:
          - boolean
          - 'null'
          description: Whether a listing was automatically generated from a purchase order
        barcodes:
          type:
          - array
          - 'null'
          description: Barcode(s) for the ticket(s) in this listing.
          items:
            $ref: '#/components/schemas/BarcodeInformation2'
    CountryRequest:
      type: object
      additionalProperties: false
      required:
      - code
      properties:
        code:
          type:
          - string
          - 'null'
          description: The two-letter ISO 3166 code for the country.
    ListingNote:
      type: object
      description: Provides additional notes on a listing
      additionalProperties: false
      properties:
        id:
          type:
          - integer
          - 'null'
          description: The listing note identifier.
          format: int32
        note:
          type:
          - string
          - 'null'
          description: The localized note.
        type:
          type:
          - string
          - 'null'
          description: The listing note type name. Can be `Information`, `Perk`, `Defect` and `RestrictionOnUse`.
        _links:
          oneOf:
          - $ref: '#/components/schemas/ListingNoteLinks'
    Section:
      type: object
      additionalProperties: false
      properties:
        name:
          type:
          - string
          - 'null'
        free_text_row:
          type: boolean
        queue_number_row:
          type: boolean
        rows:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Row'
    CountryLinks:
      title: CountryLinks
      type: object
      properties:
        self:
          oneOf:
          - $ref: '#/components/schemas/Link'
        country:events:
          description: The events taking place in a country.
          oneOf:
          - $ref: '#/components/schemas/Link'
        country:localwebpage:
          oneOf:
          - $ref: '#/components/schemas/Link'
    EventRequest:
      type: object
      additionalProperties: false
      required:
      - name
      - start_date
      properties:
        name:
          type:
          - string
          - 'null'
          description: The name of the event.
        start_date:
          type:
          - string
          - 'null'
          description: The date when the event starts.
          format: date-time
        date_confirmed:
          type:
          - boolean
          - 'null'
          description: True if the event start and end date have been confirmed; Otherwise, false.
        note:
          type:
          - string
          - 'null'
          description: Additional notes on the event.
    PostSellerListingPreviewRequest:
      type: object
      additionalProperties: false
      required:
      - seating
      - ticket_type
      - split_type
      - number_of_tickets
      properties:
        ticket_price:
          description: The price of each ticket in the listing.
          oneOf:
          - $ref: '#/components/schemas/Money'
        ticket_proceeds:
          description: The amount that the seller will receive for each ticket sold.
          oneOf:
          - $ref: '#/components/schemas/Money'
        seating:
          description: 'The seating information for the ticket(s) in this listing. For PATCH Requests, you need to pass in all the fields of a Seating to update, even when you only need to update some of the fields. Otherwise the rest of the fields will be set to empty. '
          oneOf:
          - $ref: '#/components/schemas/SeatingRequest'
        face_value:
          description: The price printed on the ticket, not including any booking fees.
          oneOf:
          - $ref: '#/components/schemas/Money'
        ticket_type:
          type:
          - string
          - 'null'
          description: The type of ticket(s) in this listing.
        split_type:
          type:
          - string
          - 'null'
          description: The way that the ticket(s) are allowed to be split up when sold.
        number_of_tickets:
          type:
          - integer
          - 'null'
          description: The number of tickets available for purchase.
          format: int32
        display_number_of_tickets:
          type:
          - integer
          - 'null'
          description: The number of tickets that should be displayed to buyers as available for purchase.
          format: int32
        ticket_location_address_id:
          type:
          - integer
          - 'null'
          description: The identifier of the address where the ticket(s) are located.
          format: int32
        listing_note_ids:
          type:
          - array
          - 'null'
          description: An array of listing note identifiers that provides additional notes on the listing
          items:
            type: integer
            format: int32
        in_hand_at:
          type:
          - string
          - 'null'
          description: The date when the seller will have the tickets in hand.
          format: date-time
        external_id:
          type:
          - string
          - 'null'
          description: An identifier that has been assigned to the listing in an external inventory management system.
        notes:
          type:
          - string
          - 'null'
          description: A comma-separated string of additional notes about the listing
        instant_delivery:
          type:
          - boolean
          - 'null'
        published:
          type:
          - boolean
          - 'null'
          description: True when the listing should be published; Otherwise, false.
        lms_optin:
          type:
          - boolean
          - 'null'
          description: True when the listing should be opted into Last Minute Sales; Otherwise, false.
        eticket_ids:
          type:
          - array
          - 'null'
          description: A array of the identifiers of the E-Tickets to be assigned to the listing.
          items:
            type: integer
            format: int32
        external_event_information:
          type:
          - array
          - 'null'
          description: Information about the listing's event on other platforms.
          items:
            $ref: '#/components/schemas/SellerListingExternalEventInformation'
        purchase_price_per_ticket:
          description: The purchase price paid by the seller for each ticket in the listing.
          oneOf:
          - $ref: '#/components/schemas/Money'
        total_purchase_price:
      

# --- truncated at 32 KB (45 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/viagogo/refs/heads/main/openapi/viagogo-sellerlistings-preview-api-openapi.yml