Skip to main content

AllocateManualSeatsRequest

Request to manually allocate or release specific seats in a cart item.

cartIdinteger<int32>required

Cart identifier (ID_FlagGroup). Use 0 to create a new cart.

cartItemIdinteger<int32>required

Cart item identifier (ID_InterfaceFlag). Use 0 to create a new cart item.

eventSessionIdinteger<int32>required

Event session / catalog content identifier.

detail object[]nullable

List of seat operations to perform (select or release).

  • Array [
  • seatIdinteger<int32>required

    Seat identifier (Article ID) to flag or unflag.

    rateIdinteger<int32>required

    Rate identifier applied when selecting the seat.

    actionSelectbooleanrequired

    True to select (flag) the seat, false to unselect (release) it.

  • ]
  • AllocateManualSeatsRequest
    {
    "cartId": 0,
    "cartItemId": 0,
    "eventSessionId": 0,
    "detail": [
    {
    "seatId": 0,
    "rateId": 0,
    "actionSelect": true
    }
    ]
    }