Alokai

UpdateCartProps

Parameters for updating a cart entry.

interface UpdateCartProps extends BaseProps, BaseUserId {
	cartId: string;
	entry: OrderEntry;
	entryNumber: number;
}

Properties

NameRequiredTypeDescription
cartIdRequiredstringCart identifier: cart code for logged in user, cart guid for anonymous user, current for the last modified cart.
entryRequiredOrderEntryRequest body parameter that contains details such as the quantity of a product (quantity) and the pickup store name (deliveryPointOfService.name).
entryNumberRequirednumberAn identifier of entry in an array of entries.

Referenced Types

On this page