Skip to content

All Application Imports

Endpoint: GET /api/application-imports

Description: Returns a paginated list of application imports, ordered by build start date descending.

Query Parameters

Parameter Type Required Description
page integer No Page number (1-based). Default: 1.
applicationId string (GUID) No Filter by application.

Response Attributes

Field Type Description
items array[object] The result set for the current page.
items[].id string (GUID) Unique identifier of the import.
items[].kind string Resource type. Always Application Import.
items[].number integer Sequential import number.
items[].type string Import type. Values: Scheduled, Manual, API.
items[].status string Import status. Values: Pending, Running, Finished, Failed, Canceled, Canceling.
items[].buildStart string (ISO 8601) Date and time the import started.
items[].buildEnd string (ISO 8601) Date and time the import completed. null if still running.
items[].application object The application this import belongs to.
items[].application.id string (GUID) Application ID.
items[].application.kind string Always Application.
items[].application.name string Application name.
items[].application.priority string Priority rating. Values: None, Low, Moderate, High, Critical.
items[].application.isArchived boolean Whether the application is archived.
items[].application.lastUpdated string (ISO 8601) Application last updated date.
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": "f1e2d3c4-b5a6-9788-7654-321fedcba098",
      "kind": "Application Import",
      "number": 47,
      "type": "Scheduled",
      "status": "Finished",
      "buildStart": "2025-12-01T02:00:00Z",
      "buildEnd": "2025-12-01T02:14:32Z",
      "application": {
        "id": "b8c1d2e3-4f5a-6b7c-8d9e-0f1a2b3c4d5e",
        "kind": "Application",
        "name": "Jack Henry Symitar",
        "priority": "Critical",
        "isArchived": false,
        "lastUpdated": "2025-12-01T08:45:00Z"
      }
    }
  ],
  "totalCount": 47,
  "page": 1,
  "pageSize": 50,
  "totalPages": 1
}