@webitel/api-services
    Preparing search index...

    Function getArticles

    • Parameters

      • axiosInstance: AxiosInstance = axios

      Returns {
          articlesAttachmentList: (
              spaceId: string,
              articleId: string,
              params?: ArticlesAttachmentListParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseAttachmentList, any, {}>>;
          articleVersionsList: (
              spaceId: string,
              articleId: string,
              params?: ArticleVersionsListParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticleVersionList, any, {}>>;
          createArticle: (
              spaceId: string,
              knowledgebaseInputArticle: KnowledgebaseInputArticle,
              params?: CreateArticleParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticleList, any, {}>>;
          deleteArticle: (
              spaceId: string,
              etag: string,
              params?: DeleteArticleParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticle, any, {}>>;
          listArticles: (
              spaceId: string,
              params?: ListArticlesParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticleList, any, {}>>;
          listArticles2: (
              spaceId: string,
              articleId: string,
              params?: ListArticles2Params,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticleList, any, {}>>;
          locateArticle: (
              spaceId: string,
              etag: string,
              params?: LocateArticleParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticle, any, {}>>;
          locateArticleVersion: (
              spaceId: string,
              articleId: string,
              versionId: string,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticleVersion, any, {}>>;
          updateArticle: (
              spaceId: string,
              etag: string,
              updateArticleBody: UpdateArticleBody,
              params?: UpdateArticleParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<KnowledgebaseArticleList, any, {}>>;
      }