Application statistics REST API

Application statistics REST API exposes statistics data on all applications, such as an application's last updated date, record count, attachment size etc.

Statistics are collected by a timer task which can be configured by an administrator using Domino Leap configuration settings.

  • Authentication

    All REST API calls must be made as an authenticated user in Administrator or Super Administrator role. If you want to exercise the API with code, you may use basic authentication. The primary mechanism is to use basic authentication where the username and password are a Base64 encoded string.

  • REST actions

    The following table lists the types of actions that are available and the URLs associated with those actions.

    Table 1. Operations and their corresponding URLs
    URL HTTP Verb ActionName
    /volt-api/secure/org/admin/apps GET list
    /volt-api/secure/org/admin/apps/{app-uid} GET app detail
    Note: app-uid is the UID of the application.

List

This action retrieves a list of all apps, available query parameters:
  • forceRefresh: executes statistics collection on all apps. Default value: false

  • includeForms: whether includes app forms information in response. Default value: false

  • includeAdmins: whether includes app administrators information in response. Default value: false

  • format: (case sensitive) acceptable values: json, application/json, xlsx, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

  • filename: only used when pFormat is set to xlsx format. The file extension has to be xlsx.

    Note: When the format is an open document and a file is downloaded, if the file name is not set, the default file name is app.xlsx.

App detail

This action retrieves the details for a single app.