Operation Id:
products/deliveryTime/search/post [Official Documentaction]
Methods
- stockId Integer
- isCollectionInPerson Boolean
- products Array<Object>
- productId Integer
- sizeId String
- sizePanelName String
- productIndex String
- productSizeQuantity Number
Examples
Get delivery time for selected product size using Ids
Loading editor...
const result = await idosellRequest.searchProductsDeliveryTime .productId(15) .sizeId(4) .exec();
Get delivery time for specified quantity of selected product size using Ids
Loading editor...
const result = await idosellRequest.searchProductsDeliveryTime .productId(15) .sizeId(4) .productSizeQuantity(3) .exec();
Get delivery time for selected product size using IAI code
Loading editor...
const result = await idosellRequest.searchProductsDeliveryTime .productIndex("15-4") .exec();