Im using nph generic interface (webservices) to get the ticket information (including articles) using TicketGet operation.
the question is how do i get all articles except note-internal article?
if i set AllArticles parameter to 1 (like my code below), it will display all article including note-internal article.
Code: Select all
$Operation2 = 'TicketGet';
try {
$TicketID2 = $client->__soapCall($Operation2, array(
new SoapParam($username, "UserLogin"),
new SoapParam($password, "Password"),
new SoapParam($array, "TicketID"),
new SoapParam("1", "DynamicFields"),
new SoapParam("1", "AllArticles"),
new SoapParam("1", "Extended")
or i need to build my own validation script to display properly and exclude note-internal aticles after sending out above operation?
thanks.
sorry for the english
