• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

faqgetGroupEntries

Some tooltip text!
• 1 minute to read
 • 1 minute to read

Description

Gets entry information about all entries in an faq group. Useful if you wish to display all questions with answers for a group in a separate element/page.

In parameters

Parameter Description
sessionKey A valid session key. If empty only public entries will be accessible.
groupId The group ID

Out parameters

Parameter Description
errorCode See list of codes
entries All entries in a group. See field description.

Example

customer.customerService custService = new customer.customerService();
string sessionKey;

if(custService.login("test","test", out sessionKey) == "0")
{
  customer.FaqCategoryStruct[] categories;
  customer.FaqEntryStruct[] entries;
  customer.FaqParentStruct[] parents;
  customer.FaqGroupStruct[] groups;
  string ret = custService.faq_getCategory(sessionKey, "2",out categories,out entries,out parents,out groups);
  out attachmentIds,out hasHtml,out score,out faqParents);
}
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top