x

Main chapters

  1. LimeSurvey Cloud vs LimeSurvey CE
  2. LimeSurvey Cloud - Quick start guide
  3. LimeSurvey CE - Installation
  4. How to design a good survey (Guide)
  5. Getting started
  6. LimeSurvey configuration
  7. Introduction - Surveys
  8. View survey settings
  9. View survey menu
  10. View survey structure
  11. Introduction - Questions
  12. Introduction - Question Groups
  13. Introduction - Surveys - Management
  14. Survey toolbar options
  15. Multilingual survey
  16. Quick start guide - ExpressionScript
  17. Advanced features
  18. General FAQ
  19. Troubleshooting
  20. Workarounds
  21. License
  22. Version change log
  23. Plugins - Advanced
 Actions

REST API

From LimeSurvey Manual

Revision as of 13:16, 18 October 2022 by Kfoster (talk | contribs)

TODO

Under development

Available from version x (LS 5.5.0?)

Available API endpoints

Technical specification. UML.

Introduction

LimeSurvey REST API v1 is available in LS 5.5.0 or more recent which offers various API endpoints.

Setup

Configure

In order to use REST API you must first enable the service, and then adjust the settings to suit your needs. To enable login to the LimeSurvey administration, go to Global settings, choose the tab 'Interfaces' and select 'Publish API on /rest'.

Security

The REST API uses the same security measures as the normal administration login. That means that the permission set of the used username and password is the same as if you would login in the administration with that user/password. Also the REST API is protected against brute-force password cracking - like the normal administration login.

Usage

API Location

The REST API URL is http://www.yourdomain.com/rest/v1 .

The available API endpoints are documented using swagger https://api.limesurvey.org/swagger.

Sessions

Endpoints

See the Swagger Documentation for more details.

Method Prefix Endpoint Notes HEADER params URL Path params POST params GET params Command Class Command Params
/rest/v1/
POST * session create new session token (string)username, (string)password, (string)?plugin SessionKeyCreate (string)username, (string)password, (string)?plugin
DELETE * session Authorization SessionKeyRelease (string)sessionKey
GET * siteSettings list Authorization SiteSettingsGet (string)sessionKey, (string)?settingName
GET * siteSettings/<setting-name> single Authorization settingName SiteSettingsGet (string)sessionKey, (string)?settingName
POST survey Authorization (int)surveyID, (string)surveyTitle, (string)surveyLanguage, (string)format SurveyAdd (string)sessionKey, (int)?surveyID, (string)surveyTitle, (string)surveyLanguage, (string)format

Examples

PHP Example