Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

Descriptor

Value

HTTP Method

POST

Description

Updates metadata for the specified application.

Required Permission

Manage Applications

Version Introduced

2.7.5

Request Header Parameters

Parameter

Value

Required

Description

Accept

String

Yes

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

Request POST Data Parameters

Parameter

Value

Required

Description

description

String

Yes

The new value for the Metadata.

Sample Call:

Code Block
languagebash
curl --insecure -H 'Accept: application/json' -H "Authorization: APIKEY {apiKey}" -X POST --data 'description=12.4' http://localhost:8080/threadfix/rest/latest/applications/2/metadata/5/update

Sample Output:

Code Block
{
    "message": "",
    "success": true,
    "responseCode": -1,
    "object": {
        "id": 5,
        "orderPosition": 1,
        "description": "12.4",
        "key": {
            "id": 4,
            "active": true,
            "type": "APPLICATION",
            "key": "Version"
        },
        "title": "Version"
    }
}


Page Tree
rootApplications 3.0 API