Skip to main content

EventimProductPricesAndStocksResponse

Response containing prices and stock information for multiple products.

productsPricesAndStocks object[]nullable
  • Array [
  • eventSessionIdinteger<int32>nullable

    Event session identifier (ID_CatalogContents) if product linked to a eventSession.

    productIdinteger<int32>required

    Product identifier (ID_ObjectType).

    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).

  • ]
  • stockLimitinteger<int32>nullable

    Stock limit (only if not unlimited).

    productTypestringnullable

    Product type from parent generic OptionalField.

  • ]
  • EventimProductPricesAndStocksResponse
    {
    "productsPricesAndStocks": [
    {
    "eventSessionId": 0,
    "productId": 0,
    "amount": 0,
    "fees": 0,
    "feesDetails": [
    {
    "colId": 0,
    "amount": 0
    }
    ],
    "stockLimit": 0,
    "productType": "string"
    }
    ]
    }