Get app settings

GET /1/appsettings

Get app settings

Responses

  • 200 application/json

    The current app settings.

    Hide response attribute Show response attribute object
    • appSettings object
      Hide appSettings attributes Show appSettings attributes object
      • id string Required
      • minAppVersionIos string Required
      • minAppVersionAndroid string Required
      • waitingListEnabled boolean Required
      • inMaintenance boolean Required
      • appleAppStoreUrl string
      • googlePlayStoreUrl string
      • activitySlackTimeInterval integer Required
      • activeFrom string Required
      • transactionFeeInCentsEUR integer Required
GET /1/appsettings
curl \
 --request GET 'https://api.localsporthero.com/1/appsettings'
Response examples (200)
{
  "appSettings": {
    "id": "85362399-38e1-4255-87a0-f3f984ed16d9",
    "minAppVersionIos": "1.0.0",
    "minAppVersionAndroid": "1.0.0",
    "waitingListEnabled": false,
    "inMaintenance": false,
    "appleAppStoreUrl": "https://appstore.com/id{asdfasdf}",
    "googlePlayStoreUrl": "https://playstore.com/id{asdfasdf}",
    "activitySlackTimeInterval": 3600,
    "activeFrom": "2022-05-02T11:00:00.000Z",
    "transactionFeeInCentsEUR": 29
  }
}