Skip to content

All Applications

Endpoint: GET /api/applications

Description: Returns a paginated list of all applications, ordered by name.

Query Parameters

Parameter Type Required Description
page integer No Page number (1-based). Default: 1.

Response Attributes

Field Type Description
items array[object] The result set for the current page.
items[].id string (GUID) Unique identifier of the application.
items[].kind string Resource type. Always Application.
items[].name string Application name.
items[].priority string Priority rating. Values: None, Low, Moderate, High, Critical.
items[].isArchived boolean Whether the application is archived.
items[].lastUpdated string (ISO 8601) Date the application was last updated.
totalCount integer Total matching results across all pages.
page integer Current page number.
pageSize integer Number of results per page. Always 50.
totalPages integer Total number of pages.

Sample Response

{
  "items": [
    {
      "id": "b8c1d2e3-4f5a-6b7c-8d9e-0f1a2b3c4d5e",
      "kind": "Application",
      "name": "Jack Henry Symitar",
      "priority": "Critical",
      "isArchived": false,
      "lastUpdated": "2025-12-01T08:45:00Z"
    }
  ],
  "totalCount": 27,
  "page": 1,
  "pageSize": 50,
  "totalPages": 1
}