# Get all application settings Endpoint: GET /application-settings Version: 5.1.43 Security: api_key ## Query parameters: - `setting_group` (string) The group of the setting - `page_number` (integer) The page number for which to get application settings. This will default to the first page if excluded - `page_size` (integer) The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided ## Response 200 fields (application/json): - `_pageInfo` (object) - `_pageInfo.numberOnPage` (integer) The number of items on this page. This should always match the page size unless it is the last page. - `_pageInfo.total` (integer) The total number of items - `responseList` (array) Example: [{"settingValue":"true"}] - `responseList.settingId` (integer) The ID of the application setting - `responseList.settingGroup` (string) Application setting group - `responseList.settingName` (string) Application setting available per group - `responseList.settingValue` (string, required) Value for an application setting Example: "true" - `responseList.valueType` (string) Type of the value Enum: "string", "boolean", "number", "regular-expression" ## Response 401 fields