Home > @vsf-enterprise/sap-commerce-webservices-sdk > ProductListControllerApiAxiosParamCreator

ProductListControllerApiAxiosParamCreator variable

ProductListControllerApi - axios parameter creator

Signature:

ProductListControllerApiAxiosParamCreator: (configuration?: Configuration) => {
    addEntriesToCartUsingPOST: (baseSiteId: string, addToCartData: AddToCartEntries, options?: any) => Promise<RequestArgs>;
    addProductListUsingPOST: (productlistname: string, options?: any) => Promise<RequestArgs>;
    addProductToListUsingPOST: (productcode: string, productlistname: string, quantity?: number, options?: any) => Promise<RequestArgs>;
    editProductListUsingPUT: (newname: string, productlistname: string, isfavourite?: boolean, options?: any) => Promise<RequestArgs>;
    getFavouriteProductListUsingGET: (fields?: string, options?: any) => Promise<RequestArgs>;
    getProductListBinUsingGET: (fields?: string, options?: any) => Promise<RequestArgs>;
    getProductListUsingGET: (productlistname: string, fields?: string, options?: any) => Promise<RequestArgs>;
    getSharedWithMeProductListsUsingGET: (fields?: string, options?: any) => Promise<RequestArgs>;
    removeEntryUsingDELETE: (entrycode: string, options?: any) => Promise<RequestArgs>;
    removeProductListUsingDELETE: (productlistname: string, options?: any) => Promise<RequestArgs>;
    removeSharedProductListForUserUsingDELETE: (productlistname: string, userid: string, options?: any) => Promise<RequestArgs>;
    setFavouriteProductListUsingPOST: (name: string, options?: any) => Promise<RequestArgs>;
    shareProductListWithUserUsingPOST: (productlistname: string, userid: string, options?: any) => Promise<RequestArgs>;
    updateEntryUsingPOST: (entrycode: string, quantity?: number, options?: any) => Promise<RequestArgs>;
}