applicationSettings

Get all application settings

Securityapi_key
Request
query Parameters
setting_group
string

The group of the setting

page_number
integer <int64>
Default: 1

The page number for which to get application settings. This will default to the first page if excluded

page_size
integer <int64>

The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided

Responses
200

Success

401

Unauthorized access

get/application-settings
Response samples
application/json
{
  • "_pageInfo": {
    },
  • "responseList": [
    ]
}

Get application setting by ID

Securityapi_key
Request
path Parameters
settingId
required
integer <int32>

The ID of the setting

Responses
200

Success

401

Unauthorized access

404

Not found

get/application-settings/{settingId}
Response samples
application/json
{
  • "settingValue": "true"
}

Update application setting by ID

Securityapi_key
Request
path Parameters
settingId
required
integer <int32>

The ID of the setting

Request Body schema: application/json
required

The updated application setting

settingValue
required
string <= 255 characters

Value for an application setting

Responses
200

Success

400

Bad request

401

Unauthorized access

404

Not found

put/application-settings/{settingId}
Request samples
application/json
{
  • "settingValue": "true"
}
Response samples
application/json
{
  • "settingValue": "true"
}