Takaro - v0.4.9
    Preparing search index...

    Function ShopCategoryApiAxiosParamCreator

    • ShopCategoryApi - axios parameter creator

      Parameters

      • Optionalconfiguration: Configuration

      Returns {
          shopCategoryControllerBulkAssign: (
              shopCategoryBulkAssignDTO?: ShopCategoryBulkAssignDTO,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
          shopCategoryControllerCreate: (
              shopCategoryCreateDTO?: ShopCategoryCreateDTO,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
          shopCategoryControllerGetAll: (
              gameServerId?: string,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
          shopCategoryControllerGetOne: (
              id: string,
              gameServerId?: string,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
          shopCategoryControllerMove: (
              id: string,
              shopCategoryMoveDTO?: ShopCategoryMoveDTO,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
          shopCategoryControllerRemove: (
              id: string,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
          shopCategoryControllerSearch: (
              shopCategorySearchInputDTO?: ShopCategorySearchInputDTO,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
          shopCategoryControllerUpdate: (
              id: string,
              shopCategoryUpdateDTO?: ShopCategoryUpdateDTO,
              options?: RawAxiosRequestConfig,
          ) => Promise<RequestArgs>;
      }

      • shopCategoryControllerBulkAssign: (
            shopCategoryBulkAssignDTO?: ShopCategoryBulkAssignDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>

        Bulk assign categories to multiple shop listings Required permissions: MANAGE_SHOP_LISTINGS
        OperationId: ShopCategoryControllerBulkAssign

      • shopCategoryControllerCreate: (
            shopCategoryCreateDTO?: ShopCategoryCreateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>

        Create a new shop category Required permissions: MANAGE_SHOP_LISTINGS
        OperationId: ShopCategoryControllerCreate

      • shopCategoryControllerGetAll: (gameServerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

        Get all shop categories
        OperationId: ShopCategoryControllerGetAll

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

        Get a shop category by id
        OperationId: ShopCategoryControllerGetOne

      • shopCategoryControllerMove: (
            id: string,
            shopCategoryMoveDTO?: ShopCategoryMoveDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>

        Move a shop category to a different parent Required permissions: MANAGE_SHOP_LISTINGS
        OperationId: ShopCategoryControllerMove

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

        Delete a shop category Required permissions: MANAGE_SHOP_LISTINGS
        OperationId: ShopCategoryControllerRemove

      • shopCategoryControllerSearch: (
            shopCategorySearchInputDTO?: ShopCategorySearchInputDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>

        Search shop categories
        OperationId: ShopCategoryControllerSearch

      • shopCategoryControllerUpdate: (
            id: string,
            shopCategoryUpdateDTO?: ShopCategoryUpdateDTO,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>

        Update a shop category Required permissions: MANAGE_SHOP_LISTINGS
        OperationId: ShopCategoryControllerUpdate