v1

latestOpenAPI 3.1.02026-07-2489171167.4 KB
License Manager Public

Get a List of Applications

Retrieve a paginated list of applications configured in your SysAid account. You can use different criteria to filter the list.

get/license-manager/applications

Query parameters

offsetinteger

The offset for pagination. Calculated as (page - 1) * limit (page starts at 1).

limitinteger

The number of items to display per page. The default is 10, and you can have up to 100.

sortstring[]

Sort as field:direction pairs (e.g. ["name:asc", "dateCreated:desc"]).

discoveryMethodsDiscoveryMethod[]

Filter results by one or more discovery methods.

categoryApplicationCategory[]

Filter results by one or more categories.

[
  "developer-tools"
]
stateApplicationState[]

Filter results by one or more states.

dateCreatedFromstring date

Applications by date from which they were created.

dateCreatedTostring date

Applications by date to which they were created.

querystring

Query to search entities.

estimatedSavingsFromnumber

The minimum estimated savings to include in the results (inclusive).

estimatedSavingsTonumber

The maximum estimated savings to include in the results (inclusive).

utilizationRateFrominteger

The minimum utilization rate to include in the results (inclusive).

utilizationRateTointeger

The maximum utilization rate to include in the results (inclusive).

currencyLicenseManagerCurrency[]

Filter results by one or more currencies.

[
  "USD"
]
utilizationRateMissingboolean

Filter results by missing utilization rate. When set to "true", only applications without a utilization rate value are returned. When "false" or omitted, no filtering is applied.

Response

Returns a paginated list of applications.

limitinteger

The number of items that are returned per page

offsetinteger

The offset used for pagination.

totalinteger

The total number of elements across all pages.

Example response

{
  "limit": 20,
  "total": 50,
  "data": [
    {
      "category": "developer-tools",
      "currency": "USD",
      "dateCreated": "2025-06-15T10:30:00Z",
      "dateUpdated": "2025-08-20T14:30:00Z"
    }
  ]
}