Configuration

GET /api/config

Get Application config

Example request:

GET /api/config HTTP/1.1
Content-Type: application/json

Example response:

HTTP/1.1 200 OK
Content-Type: application/json

{
  "data": {
    "gpx_limit_import": 10,
    "is_registration_enabled": false,
    "max_single_file_size": 1048576,
    "max_zip_file_size": 10485760,
    "max_users": 0
  },
  "status": "success"
}
Status Codes
PATCH /api/config

Update Application config

Authenticated user must be an admin

Example request:

GET /api/config HTTP/1.1
Content-Type: application/json

Example response:

HTTP/1.1 200 OK
Content-Type: application/json

{
  "data": {
    "gpx_limit_import": 10,
    "is_registration_enabled": true,
    "max_single_file_size": 1048576,
    "max_zip_file_size": 10485760,
    "max_users": 10
  },
  "status": "success"
}
Parameters
  • auth_user_id (integer) – authenticate user id (from JSON Web Token)

Request JSON Object
  • gpx_limit_import (integrer) – max number of files in zip archive

  • is_registration_enabled (boolean) – is registration enabled ?

  • max_single_file_size (integrer) – max size of a single file

  • max_zip_file_size (integrer) – max size of a zip archive

  • max_users (integrer) – max users allowed to register on instance

Request Headers
Status Codes