Skip to main content

EventimAllocateProductsRequest

Request model for allocating products in a cart.

cartIdinteger<int32>required

The cart identifier to add products to. Must be an existing, valid cart. Required, must be greater than 0.

productIdinteger<int32>required

The product identifier to allocate. Must reference an existing product with available stock. Required, must be greater than 0.

eventIdinteger<int32>nullable

Optional event identifier to scope the allocation. When provided, EventSessionId must also be provided. Must be greater than 0 if set.

eventSessionIdinteger<int32>nullable

Optional event session identifier to scope the allocation. When provided, EventId must also be provided. Must be greater than 0 if set.

quantityinteger<int32>required

The number of products to allocate. Must not exceed available stock. Required, must be greater than 0.

EventimAllocateProductsRequest
{
"cartId": 0,
"productId": 0,
"eventId": 0,
"eventSessionId": 0,
"quantity": 0
}