Uses of Class
de.hybris.platform.webservicescommons.errors.exceptions.WebserviceValidationException
-
-
Uses of WebserviceValidationException in de.hybris.platform.ordermanagementwebservices.controllers.order
Methods in de.hybris.platform.ordermanagementwebservices.controllers.order that throw WebserviceValidationException Modifier and Type Method Description OrderSearchPageWsDtoOmsOrdersController. getOrdersByStatus(java.lang.String orderStatuses, java.lang.String fields, int currentPage, int pageSize, java.lang.String sort)Request to get all orders with certain order status(es) -
Uses of WebserviceValidationException in de.hybris.platform.ordermanagementwebservices.controllers.returns
Methods in de.hybris.platform.ordermanagementwebservices.controllers.returns that throw WebserviceValidationException Modifier and Type Method Description voidOmsReturnsController. cancelReturnRequest(CancelReturnRequestWsDTO cancelReturnRequestWsDTO)Request to cancel aReturnRequestModel.ReturnSearchPageWsDTOOmsReturnsController. getReturnsByStatus(java.lang.String returnStatuses, java.lang.String fields, int currentPage, int pageSize, java.lang.String sort)Request to get paged returns with certain return status(s) -
Uses of WebserviceValidationException in de.hybris.platform.warehousingwebservices.controllers.asn
Methods in de.hybris.platform.warehousingwebservices.controllers.asn that throw WebserviceValidationException Modifier and Type Method Description AsnWsDTOWarehousingAsnsController. createAsn(AsnWsDTO asnWsDTO, java.lang.String fields)Request to create aAdvancedShippingNoticeModelin the system -
Uses of WebserviceValidationException in de.hybris.platform.warehousingwebservices.controllers.order
Methods in de.hybris.platform.warehousingwebservices.controllers.order that throw WebserviceValidationException Modifier and Type Method Description ConsignmentSearchPageWsDtoWarehousingConsignmentsController. getConsignmentsByStatus(java.lang.String consignmentStatuses, java.lang.String fields, int currentPage, int pageSize, java.lang.String sort)Request to get allConsignmentModelwith certain consignment status(es) -
Uses of WebserviceValidationException in de.hybris.platform.warehousingwebservices.controllers.pointofservice
Methods in de.hybris.platform.warehousingwebservices.controllers.pointofservice that throw WebserviceValidationException Modifier and Type Method Description PointOfServiceWsDTOWarehousingPointOfServicesController. deleteWarehousesFromPointOfService(@NotNull java.lang.String pointOfServiceName, @NotNull java.lang.String warehouseCode, java.lang.String fields)Request to delete warehouses fromPointOfServiceModel.PointOfServiceWsDTOWarehousingPointOfServicesController. updatePointOfServiceWithAddress(AddressWsDTO address, @NotNull java.lang.String pointOfServiceName, java.lang.String fields)Request to update aPointOfServiceModelin the system Make sure to pass a valid WarehouseCode to update the Point Of Service withPointOfServiceWsDTOWarehousingPointOfServicesController. updatePointOfServiceWithWarehouses(WarehouseCodesWsDto warehouseCodes, @NotNull java.lang.String pointOfServiceName, java.lang.String fields)Request to update aPointOfServiceModelin the system Make sure to pass a valid WarehouseCode to update the Point Of Service with -
Uses of WebserviceValidationException in de.hybris.platform.warehousingwebservices.controllers.stocklevel
Methods in de.hybris.platform.warehousingwebservices.controllers.stocklevel that throw WebserviceValidationException Modifier and Type Method Description StockLevelWsDtoWarehousingStockLevelsController. createStockLevel(StockLevelWsDto stockLevelWsDto, java.lang.String fields)Request to create aStockLevelModelin the systemStockLevelAdjustmentsWsDTOWarehousingStockLevelsController. createStockLevelAdjustment(java.lang.String productCode, java.lang.String warehouseCode, java.lang.String binCode, java.lang.String releaseDate, StockLevelAdjustmentsWsDTO stockLevelAdjustmentsWsDTO)Request to create aInventoryEventModelin the system to adjust a specificStockLevelModel -
Uses of WebserviceValidationException in de.hybris.platform.ycommercewebservices.v1.controller
Methods in de.hybris.platform.ycommercewebservices.v1.controller that throw WebserviceValidationException Modifier and Type Method Description CartDataCartController. addPaymentInfo(javax.servlet.http.HttpServletRequest request)Web service for creating a credit card payment subscription.
Sample call: https://localhost:9002/rest/v1/mysite/cart/paymentinfo
CCPaymentInfoData parameters need to be send as post body.
Method uses dedicated populator -HttpRequestPaymentInfoPopulator- to populate theCCPaymentInfoDatafrom request parameters.
Method uses dedicated validator -CCPaymentInfoValidator- to validate request parameters.
This method requires authentication and is restricted forHTTPSchannel.
Method type :POST.CartModificationDataCartController. addToCart(java.lang.String baseSiteId, java.lang.String code, long qty, java.lang.String storeName)Web service handler for adding new products to the session cart.
Sample target URL : http://localhost:9001/rest/v1/cart/entry.
Client should provide product code and quantity (optional) as POST body.
It's also possible to add product that will be pickedup in store by specifying optional storeName parameter (product must be in stock in that particular store).
For Content-Type=application/x-www-form-urlencoded;charset=UTF-8 a sample body is: (urlencoded) is: entryNumber=1&qty=2..
Request Method =POSTResponse contains a set-cookie header with the jsessionId associated with the cart.AddressDataCustomersController. createAddress(javax.servlet.http.HttpServletRequest request)Create new address for current customerReviewDataProductsController. createReview(java.lang.String code, javax.servlet.http.HttpServletRequest request)Web service handler for the postReview call.AddressDataCustomersController. editAddress(java.lang.String id, javax.servlet.http.HttpServletRequest request)Edit address from current customerStockDataProductsController. getStockData(java.lang.String baseSiteId, java.lang.String productCode, java.lang.String storeName)Web service handler for getting stock level in a given store.
Sample Call: http://localhost:9001/rest/v1/:site/products/:code/stock?storeName=OrderDataCartController. oneStepCheckout(java.lang.String addressId, java.lang.String addressIsocode, java.lang.String deliveryMode, java.lang.String voucherCode, java.lang.String paymentInfoId, java.lang.String securityCode, javax.servlet.http.HttpServletRequest request)Web service for one-step checkout from current session cart.
Sample call: https://localhost:9002/rest/v1/mysite/cart/checkout
This method requires authentication.
Method type :POST.
Method is restricted forHTTPSchannel.CartModificationDataCartController. pickupEntryInStore(java.lang.String baseSiteId, long entryNumber, java.lang.String storeName)Web service for setting store where cart entry will be picked up.
Client should provide cart entry number as path variable and storeName parameter in body.
Sample target URL : http://localhost:9001/rest/v1/cart/entry/{entryNumber}/store
Response contains a set-cookie header with the jsessionId associated with the cart.
Request Method =PUTOrderDataCartController. placeOrder(javax.servlet.http.HttpSession session)Web service for placing order from current session cart.
Sample call: https://localhost:9002/rest/v1/mysite/cart/placeorder.protected voidCartController. validateCartForPlaceOrder()
-