Checkbox Survey Software Checkbox Survey Software
  • Features
    • Survey Creation
      Survey question types, logic, merging, and action options.
    • Survey Look & Feel
      Survey customization, branding, and mobile responsiveness.
    • Survey Distribution
      Email invitations, reminders, embed options, and custom links.
    • Security & Permissions
      Survey permissions, sharing options, SSO, and data security.
    • Results & Reporting
      Data export formats, charts & graphs, report filtering and API.
    • Automation & Integration
      Automatic emails & URL redirects, API, and JavaScript.
    • On-Premises Features
      Overview of on-premises version features and architecture.
    • Full Feature List
      Compare all features and limits for hosted and on-premises plans.
  • Pricing
    • Hosted Plans
      Individual, team and enterprise cloud-hosted plans.
    • On-Premises Software
      Perpetual software licenses, installed on your own servers.
    • White Label & OEM
      Learn about integrating Checkbox into your software for resale.
    • Discounts Programs
      Discounts for academic, government and non-profits.
  • About
    • Clients
      View a sampling of our global customers by industry.
    • Blog
      Company news, announcements, and industry articles.
    • Case Studies
      Learn how some of our clients use Checkbox to streamline operations.
  • Contact Us
  • Support
    • Version 7 Help Guides
      Searchable knowledge base for Checkbox Version 7.
    • Legacy (V6) Help Guides
      Searchable knowledge base for Checkbox Version 6.
    • API Docs
      Documentation for working with the Checkbox Version 7 API.
    • Technical Requirements
      Technical requirements for installing Checkbox on-premises.
    • Support Info & Policies
      Customer support hours, holidays, access information, and terms.
    • Support Login
      Login form for Checkbox on-premises support users.
  • 
  • 
    • Sales/General
      +1 (617) 231-8890
    • Support
      +1 (617) 231-8899
  • Sign In
    • US-hosted
      Sign in page for accounts hosted in the US.
    • Canada-hosted
      Sign in page for accounts hosted in Canada.
    • EU-hosted
      Sign in page for accounts hosted in the EU.
    • UK-hosted
      Sign in page for accounts hosted in the UK.
    • Australia-hosted
      Sign in page for accounts hosted in Australia.
    • Support Login
      Login for on-premises support customers.
  • Try it Free
    • Hosted Trial
      Create a 14-day cloud-hosted trial account. US, Canada, EU, UK, & Australia hosting options.
    • On-Premises Trial
      Download a 30-day on-premises trial to install on your own servers (not for PC/laptop installation).
    • Learn More
      Not sure which option to choose? Learn more about our versions.
Homepage / Doc / List Surveys and Folders

List Surveys and Folders

The ListSurveysAndFolders method can be utilized to pull a full list of the top level, and sub level surveys and folders depending on inputs provided. This method will pull any surveys and folders that are accessible from the user that the AuthToken corresponds to.

This method is the same used to populate the survey and folder list on the survey dashboard.

class Program
    {
        static void Main(string[] args)
        {
            var authClient = new AuthService.AuthenticationServiceClient();
            var survClient = new SurveyService.SurveyManagementServiceClient();

            var authToken = string.Empty; //Generate auth token here

            var surveyFolderList = survClient.ListSurveysAndFolders(authToken, 1, 0, 100, null, false).ResultData;

            foreach (var i in surveyFolderList)
            {
                Console.WriteLine(i.Name);
                if (i.ChildrenCount != 0)
                {
                    var surveyList = survClient.ListSurveysAndFolders(authToken, i.ID, 0, 100, null, false).ResultData;
                    foreach (var t in surveyList)
                        Console.WriteLine($"--{t.Name}");
                }
            }
        }
    }

The sample code above will pull all surveys and folders at the root level, and display all surveys within their folders. This will result in something like this:

FolderName
–SurveyInFolder
–SurveyInFolder
Folder2Name
–SurveyInFolder
SurveyOutOfFolder

Input Parameters

Parameter Type Description
authToken string Authentication token to validate permission over the data requested
parentItemId int 0 will pull all Surveys 1 will pull all surveys and folders
pageNumber int 0 will pull all records any other int will pull that specific pages results
pageSize int Size of each page that Checkbox is to break the results into
filter string Value to filter the survey / folder list on. The filter here will always filter based on name.
includeSurveyResponseCount bool true will return the response count, false will not include the response count in the results
This section is currently under construction. Any documents that appear blank will be populated as soon as possible. If you have any questions or need assistance with something that is not currently documented please feel free to submit a support ticket and we will be glad to assist you.
May 12, 2017

Web Services

  • Getting Started
    • Checking if API Is Live
    • Adding a service reference
  • Authentication
    • Login
  • Responses
    • Export Responses
  • Surveys
    • List Available Surveys
    • List Surveys and Folders
  • Users
    • Get User Data
    • Create User
    • Create User Group
    • Get Users
    • Lock User
    • Unlock User
  • Invitations
    • Create Invitation
    • Update Invitation
    • Add Scheduled Invitation Activity
    • Send Invitation to Filtered Recipient List
    • Create Email List Panel
    • Add Email Address To Email List Panel
    • Add Email List Panels to Invitation
  • Security
  • Styles

 

Checkbox develops affordable, feature-rich survey software for organizations, teams, and individuals. Available as a cloud-hosted subscription or installable software. API, source code and integration options available.

Checkbox Survey Inc.
65 Chapel Street, Newton, MA 02458  USA
General: 1-617-231-8890
Sales: 1-617-231-8891
Support: 1-617-231-8899
info@checkbox.com

  • Features
  • Pricing
  • On-Premises Software
  • Blog
  • Contact Us
  • Pay a Quote/Invoice
  • Support
  • Release Notes
  • API Documentation
  • Hosted SLA
  • Software License Agreement
  • Privacy Policy
©  2002 - Checkbox Survey, Inc.