Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

File metadata and controls

35 lines (26 loc) · 1.17 KB

Get public settings

List all public settings. Learn how this can be used in configuring your server in this guide.

It supports the #pagination parameters.

URL Requires Auth HTTP Method
/api/v1/settings.public no GET

Query Parameters

Argument Example Required Description Format
query {"_id":{"$in":["LDAP_Enable", "Jitsi_Enabled"]}} Optional Query for named properties URL encoded JSON object

Example Call

curl http://localhost:3000/api/v1/settings.public

Example Result

{
  "settings": [
  { "_id": "API_Drupal_URL", "value": "" },
  { "_id": "API_Embed", "value": true }],
  "count": 50,
  "offset": 0,
  "total": 299,
  "success": true
}