Function ShopListingApiAxiosParamCreator

ShopListingApi - axios parameter creator

  • Parameters

    • Optionalconfiguration: Configuration

    Returns {
        shopListingControllerCreate: (
            shopListingCreateDTO?: ShopListingCreateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        shopListingControllerDelete: (
            id: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        shopListingControllerGetOne: (
            id: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        shopListingControllerImportListings: (
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        shopListingControllerSearch: (
            shopListingSearchInputDTO?: ShopListingSearchInputDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        shopListingControllerUpdate: (
            id: string,
            shopListingUpdateDTO?: ShopListingUpdateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
    }

    • shopListingControllerCreate: (
          shopListingCreateDTO?: ShopListingCreateDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: MANAGE_SHOP_LISTINGS
      OperationId: ShopListingControllerCreate

    • shopListingControllerDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Required permissions: MANAGE_SHOP_LISTINGS
      OperationId: ShopListingControllerDelete

    • shopListingControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>


      OperationId: ShopListingControllerGetOne

    • shopListingControllerImportListings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Required permissions: MANAGE_SHOP_LISTINGS
      OperationId: ShopListingControllerImportListings

    • shopListingControllerSearch: (
          shopListingSearchInputDTO?: ShopListingSearchInputDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>


      OperationId: ShopListingControllerSearch

    • shopListingControllerUpdate: (
          id: string,
          shopListingUpdateDTO?: ShopListingUpdateDTO,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>

      Required permissions: MANAGE_SHOP_LISTINGS
      OperationId: ShopListingControllerUpdate