Skip to main content

EventimAllocateBestSeatsResponse

Represents a response containing details of the best seats allocated for a specific event session.

cartIdinteger<int32>required

The unique identifier of the cart associated with the allocated seats.

cartItemIdinteger<int32>required

The unique identifier of the cart item representing the allocated seats.

cartItemDetail objectrequired

Represents a group of seats within a cart item, along with an indicator of whether the seats are contiguous.

isContiguousbooleanrequired

Whether the seats are contiguous.

seats object[]nullable

List of seats in the group.

  • Array [
  • rateIdinteger<int32>required

    Rate identifier.

    amountnumber<double>required

    Base price amount.

    feesnumber<double>required

    Fees amount.

    feesDetails object[]nullable

    Details about fees.

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

  • ]
  • seatProperties objectrequired

    Represents the properties and location of a seat in the venue seat map.

    seatIdinteger<int32>required

    Seat identifier (ID_Physical).

    categoryIdinteger<int32>required

    Category identifier (ID_Category).

    floorIdinteger<int32>required

    Floor identifier (ID_Floor).

    designationIdinteger<int32>required

    Designation identifier for seat labeling.

    doorIdinteger<int32>required

    Door/entrance identifier (ID_Door).

    blockIdinteger<int32>required

    Block identifier (ID_Bloc).

    tribuneIdinteger<int32>required

    Tribune/stand identifier (ID_Tribune).

    accessIdinteger<int32>required

    Access point identifier (ID_Access).

    contingentIdinteger<int32>required

    Contingent/envelope identifier (ID_PrimaryEnvelope).

    rankstringnullable

    Row designation (e.g., "A", "B", "1").

    seatstringnullable

    Seat number within the row (e.g., "12", "15").

    coordXnumber<double>required

    X coordinate position on the seat map.

    coordYnumber<double>required

    Y coordinate position on the seat map.

    rotationnumber<double>required

    Rotation angle in degrees for seat orientation.

    typePhysicalstringnullable

    Physical type of the seat (e.g., "SEAT").

  • ]
  • EventimAllocateBestSeatsResponse
    {
    "cartId": 0,
    "cartItemId": 0,
    "cartItemDetail": {
    "isContiguous": true,
    "seats": [
    {
    "rateId": 0,
    "amount": 0,
    "fees": 0,
    "feesDetails": [
    {
    "colId": 0,
    "amount": 0
    }
    ],
    "seatProperties": {
    "seatId": 0,
    "categoryId": 0,
    "floorId": 0,
    "designationId": 0,
    "doorId": 0,
    "blockId": 0,
    "tribuneId": 0,
    "accessId": 0,
    "contingentId": 0,
    "rank": "string",
    "seat": "string",
    "coordX": 0,
    "coordY": 0,
    "rotation": 0,
    "typePhysical": "string"
    }
    }
    ]
    }
    }