Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fix typo

/rest/{version}/applications/{appId}/update


Descriptor

Value

HTTP Method

PUT

Description

Updates the name of an application.

Required Permission

Manage Applications

Version Introduced2.3.0

Changes in 2.4.0                

Added the repositoryType parameter, which is required if you use repositoryUrl.

This change was also applied to the 2.3 version of the call.

Changes in 2.5.0.2

Added the filterSet parameter, which allows you to restrict Fortify Scans coming into the

application. This parameter is usable with all versions of the call.

Changes in 2.5.3Added the team parameter, which allows you to move an application from one team to another.
Changes in 2.7.1Added skipApplicationMerge parameter, which allows you to enable or disable the vulnerability merging for an application.


Request Header Parameters

Parameter

Value

Required

Description

Accept

String

Yes

A value of ‘application/json’ must be provided.


Request PUT Data Parameters

Parameter

Value

Required*

Description

Available Values

name

String

No

The new name to assign to the application. Limit 100 characters.

N/A

url

String

No

The URL of where the application being assessed lives.

N/A

uniqueId

String

No

A unique ID value to assign to the application.

N/A

applicationCriticality

Integer

No

The severity level for the application, from 1 for Low to 4 for Critical.

“1”, “2”, “3”, “4”

frameworkType

String

No

The web framework the app was built on.

“DETECT”, “JSP”, “RAILS”, “SPRING_MVC”, “STRUTS”, “DOT_NET_MVC”, “DOT_NET_WEB_FORMS”

repositoryUrl

String

No

The repository where the source code for the app can be found.  Requires reporsitoryType repositoryType to be specified.

N/A

repositoryType

String

Possibly

The type of repository your repositoryUrl refers to.  Required if you specify a repositoryUrl.

“GIT”, “SVN”

repositoryBranch

String

No

The git branch for the source code.

N/A

repositoryUserName

String

No

The user name to use for git credentials.

N/A

repositoryPassword

String

No

The password to use for git credentials.

N/A

repositoryFolder

String

No

The root directory for the source code.

N/A

filterSetStringNoThe name of the Filter Set from Fortify. If a Fortify scan does not have this as the default filter set, it cannot be uploaded to the application.N/A
teamIntegerNoThe team ID to which you want to move an application.N/A
skipApplicationMergeBooleanNoSetting to enable or disable vulnerability merging for an application.TRUE, FALSE

* At least one parameter must be provided


Sample Call:

Code Block
languagebash
themeEclipse
curl --insecure -H 'Accept: application/json' -H "Authorization: APIKEY {apiKey}" -X PUT --data "name=EditedApplication&url=http://localhost:8080&uniqueId=12345&applicationCriticality=4&frameworkType=DETECT&repositoryUrl=https://github.com/spring-projects/spring-petclinic.git&repositoryType=GIT&repositoryBranch=master&repositoryUserName=user&repositoryPassword=password&repositoryFolder=/&team=2&filterSet=Developer View" http://localhost:8080/threadfix/rest/v2.5.0.2/applications/1/update


Sample Output:


Code Block
themeEclipse
{
    "message": "",
    "success": true,
    "responseCode": -1,
    "object": "Fields updated successfully."
}


Page Tree
rootApplications API