PUT /gui_app_framework/applications/{application_id}

Upgrades an application.

Upgrades an application.

Table 1. PUT /gui_app_framework/applications/{application_id} resource details
MIME Type

application/json

Table 2. PUT /gui_app_framework/applications/{application_id} request parameter details
Parameter Type Optionality Data Type MIME Type Description

application_id

path

Required

Number (Integer)

text/plain

Required - The application identifier.

use_local_zip

header

Optional

Boolean

text/plain

Optional - Supply true to use the previously uploaded app zip file.

fields

header

Optional

String

text/plain

Optional - Use this parameter to specify which fields you would like to get back in the response. Fields that are not named are excluded. Specify subfields in brackets and multiple fields in the same object are separated by commas.

Table 3. PUT /gui_app_framework/applications/{application_id} request body details
Parameter Data Type MIME Type Description Sample

package

zip

application/zip

Optional - A zip file that contains the application's manifest and source code files, required if useLocalZip=false.

null

Table 4. PUT /gui_app_framework/applications/{application_id} response codes
HTTP Response Code Unique Code Description

202

The request for an application upgrade was accepted.

404

33900

The application definition ID does not exist.

404

33901

The application instance could not be found.

409

33000

The current state of the application does not allow the requested action.

409

33007

The current state of one of the application instances does not allow the requested action.

409

33603

The definition cannot be upgraded to support oauth or change existing oauth capabilities when it has more than one associated instance.

409

33700

The application framework is currently disabled.

409

33702

The application cannot be upgraded as it can not be changed from multiple instance to single instance.

422

33102

The application zip file structure is invalid. Check that required folders are present.

422

33103

The manifest.json file is missing from the application zip file.

422

33104

The application manifest.json file does not conform to the manifest schema.

422

33105

The application manifest.json file contains duplicate keys.

422

33106

An error occurred while parsing the manifest.json file from the application zip file.

422

33108

No application zip file was provided.

422

33109

Extracting the application zip would leave not enough space on the /store partition.

422

33201

An error occurred while processing the application RPM/Python dependencies.

422

33301

The UUID in the application manifest.json file does not match the existing UUID for this app.

422

33302

The application requested more memory than is currently available.

422

33303

The application manifest.json file contains an unsupported OAuth flow type.

422

33304

The application manifest.json file requested an invalid OAuth capability.

422

33307

The application manifest.json file contains an invalid required_capabilities entry.

422

33308

The manifest.json file has REST methods which aren't defined in the rest_methods field.

422

33403

The application image supplied is not supported.

422

33704

The application is not supported on this QRadar release.

422

1005

A supplied parameter is invalid.

500

33100

The uploaded application zip file could not be saved to disk.

500

33101

An error occurred while reading the application zip file.

500

33202

An error occurred while generating the application Dockerfile.

500

33204

An error occurred while loading the application sacrosanct files list.

500

33305

The updated application manifest.json file could not be saved to disk.

500

33306

An error occurred while parsing the copy of the app manifest stored in the database.

500

1020

The request could not be completed.

Response Description

Upgrade status details:
  • application_id - Integer - Application identifier.
  • status - String
    • UPGRADING - the upgrade is in progress.
    • AUTH_REQUIRED - the upgrade is waiting for a response to an authorisation request. See /application_creation_task/{application_id}/auth for details.

Response Sample


{
    "application_id": 42,
    "error_messages": "String",
    "error_messages_json": [
        {
            "code": "String",
            "message": "String",
            "source": "String"
        }
    ],
    "status": "String <one of: CREATING, UPGRADING, STOPPING, STARTING, AUTH_REQUIRED, COMPLETED, CANCELLED, DELETING, ERROR, UNKNOWN>"
}