# Get all logs. Note that the logs will be returned in order from most recent to least recent. Endpoint: GET /application-logs Version: 5.1.45 Security: api_key ## Query parameters: - `log_level` (string) The log level of the log file. Note that, if this parameter is excluded, the log files will be returned in alphabetical order with respect to their log level. Enum: "DEBUG", "ERROR", "INFO", "WARN" - `page_number` (integer) The page number for which to get logs. 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 201 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) - `responseList.fileDownloadId` (string) The identifier to use when downloading the file via the /file-downloads endpoint. - `responseList.file-number` (integer) The number of the file ordered from most recent to least recent. The 0th file represents the one that is currently being written to. - `responseList.logLevel` (string) The log level of the log file. Enum: "DEBUG", "ERROR", "INFO", "WARN" ## Response 403 fields