Applications (beta)
Update application
Update an application. You can update the description and kind fields. Requires a JSON patch representation of the desired changes to the application. To learn more, read Updates.
patch/api/v2/applications/{applicationKey}
Path parameters
applicationKeystring string required
The application key
The application key
Request body
Example request
[
{
"op": "replace",
"path": "/exampleField",
"value": "new example value"
}
]Response
Application response
Example response
{
"flags": {
"items": [
{
"name": "Example flag",
"key": "flag-key-123abc"
}
],
"totalCount": 1
},
"_access": {
"denied": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
],
"allowed": [
{
"reason": {
"resources": [
"proj/*:env/*;qa_*:/flag/*"
],
"actions": [
"*"
],
"effect": "allow"
}
}
]
},
"autoAdded": true,
"description": "The LaunchDarkly Cafe app",
"key": "com.launchdarkly.cafe",
"kind": "mobile",
"_maintainer": {
"member": {
"_links": {
"self": {
"href": "/api/v2/members/569f183514f4432160000007",
"type": "application/json"
}
},
"_id": "569f183514f4432160000007",
"firstName": "Ariel",
"lastName": "Flores",
"role": "admin",
"email": "ariel@acme.com"
},
"team": {
"customRoleKeys": [
"access-to-test-projects"
],
"key": "team-key-123abc",
"name": "QA Team"
}
},
"name": "LaunchDarklyCafe"
}