Kernel::WebApp::Controller::API::Role::ProvidesKnowledgeBaseRelatedArticles

NAME

Kernel::WebApp::Controller::API::Role::ProvidesKnowledgeBaseRelatedArticles – Returns knowledge base related articles.

GetRelatedArticleList()

Returns a list of the knowledge base articles related to the given subject or body or article id.

    my $List = $Controller->GetRelatedArticleList(
        Subject   => 'something',                        # optional
        Body      => 'something related to the subject', # optional
        Languages => [...],                              # optional
        ArticleID => '...',                              # optional
        UserID    => '...',                              # required
        UserType  => '...',                              # required ( agent | customer )
    );
Scroll to Top