Applications List API


Overview

Get the list of analyzed applications. The applications are sorted by name.

URI

GET /rest/applications

Query parameters

all (bool)

Optional, default: false

  • all=true: Returns a list of all the applications in the organization
  • all=false: Returns a list of only user applications

Responses

application/json

Example:

[
    {
        "name": "MyApp",
        "displayName": "MyApp",
        "delivery": {
            "dateTime": "2024-09-30T16:31:00",
            "name": "My Version"
        },
        "demo": false
    }
  ]

JSON representation

PropertyTypeDescription
namestringThe application name to set as a path parameter for most REST endpoints
displayNamestringThe application display name that is visible in the UI
delivery.dateTimestringThe date and time of the source code delivery to CAST Imagiing. Date and time are expressed in the local time zone without any time zone specified.
delivery.namestringA name associated to this source code delivery, usually expressed as a version name or version number of the application.
demoboolA boolean flag to indicate if the app is a demo app or not.