Applications (beta)
Update application version
Update an application version. You can update the supported field. Requires a JSON patch representation of the desired changes to the application version. To learn more, read Updates.
patch/api/v2/applications/{applicationKey}/versions/{versionKey}
Path parameters
applicationKeystring string required
The application key
The application key
versionKeystring string required
The application version key
The application version key
Request body
Example request
[
{
"op": "replace",
"path": "/exampleField",
"value": "new example value"
}
]Response
Application version response
Example response
{
"_access": {
"denied": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
],
"allowed": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
]
},
"autoAdded": true,
"key": "2",
"name": "01.02.03",
"supported": true
}