Skip to main content

EventimEventSessionPricesAndStocksDto

Represents prices and stock information for a specific event session.

eventIdinteger<int32>required

Event identifier (ID_Catalog).

eventSessionIdinteger<int32>required

Event session identifier (ID_CatalogContents).

prices object[]nullable

List of available prices for this event session.

  • Array [
  • rateIdinteger<int32>required

    Rate identifier (ID_Rate).

    categoryIdinteger<int32>required

    Category identifier (ID_Category).

    amountnumber<double>required

    Base Amount.

    feesnumber<double>required

    Total Fees.

    feesDetails object[]nullable

    Breakdown of amount components by column (taxes, fees, etc.).

  • Array [
  • colIdinteger<int32>required

    Column identifier matching the amount label definition.

    amountnumber<double>required

    Amount value for this component (e.g., base price, tax, fee).

  • ]
  • priceVersioninteger<int32>required

    Price list version number.

    priorityinteger<int32>required

    Display priority for ordering rates (lower values appear first).

  • ]
  • stocks object[]nullable

    List of stock availability by category, block and floor.

  • Array [
  • categoryIdinteger<int32>required

    Category identifier (ID_Category).

    contingentIdinteger<int32>required

    Contingent/envelope identifier (ID_PrimaryEnvelope).

    blockIdinteger<int32>required

    Block identifier (ID_Bloc).

    floorIdinteger<int32>required

    Floor identifier (ID_Floor).

    stockinteger<int32>required

    Number of available seats/tickets.

  • ]
  • EventimEventSessionPricesAndStocksDto
    {
    "eventId": 0,
    "eventSessionId": 0,
    "prices": [
    {
    "rateId": 0,
    "categoryId": 0,
    "amount": 0,
    "fees": 0,
    "feesDetails": [
    {
    "colId": 0,
    "amount": 0
    }
    ],
    "priceVersion": 0,
    "priority": 0
    }
    ],
    "stocks": [
    {
    "categoryId": 0,
    "contingentId": 0,
    "blockId": 0,
    "floorId": 0,
    "stock": 0
    }
    ]
    }