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

    Function getComments

    • Parameters

      • axiosInstance: AxiosInstance = axios

      Returns {
          deleteCommentComments: (
              contactId: string,
              etag: string[],
              params?: DeleteCommentCommentsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsComment[], any, {}>>;
          publishCommentComments: (
              contactId: string,
              contactsInputComment: ContactsInputComment,
              params?: PublishCommentCommentsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsComment, any, {}>>;
          searchComments: (
              contactId: string,
              params?: SearchCommentsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsCommentList, any, {}>>;
          updateCommentComments: (
              contactId: string,
              etag: string,
              updateCommentCommentsBody: UpdateCommentCommentsBody,
              params?: UpdateCommentCommentsParams,
              options?: AxiosRequestConfig,
          ) => Promise<AxiosResponse<ContactsComment, any, {}>>;
      }