ShopListingApi - functional programming interface

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        shopListingControllerCreate(shopListingCreateDTO?: ShopListingCreateDTO, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopListingOutputDTOAPI>)>;
        shopListingControllerDelete(id: string, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>)>;
        shopListingControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopListingOutputDTOAPI>)>;
        shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>)>;
        shopListingControllerSearch(shopListingSearchInputDTO?: ShopListingSearchInputDTO, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopListingOutputArrayDTOAPI>)>;
        shopListingControllerUpdate(id: string, shopListingUpdateDTO?: ShopListingUpdateDTO, options?: RawAxiosRequestConfig): Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopListingOutputDTOAPI>)>;
    }

    • shopListingControllerCreate:function
    • shopListingControllerDelete:function
      • Required permissions: MANAGE_SHOP_LISTINGS

        Parameters

        • id: string
        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>)>

        Delete

    • shopListingControllerGetOne:function
    • shopListingControllerImportListings:function
      • Required permissions: MANAGE_SHOP_LISTINGS

        Parameters

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<((axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>)>

        Import listings

    • shopListingControllerSearch:function
    • shopListingControllerUpdate:function