Update one or more applications owned by an organization.
Returns 404 if any application does not exist or does not belong to the target organization.
Up to 10 applications can be updated per request.
Request body for updating one or more applications.
required | Array of objects (OrgApplicationUpdateItemDto) [ 1 .. 10 ] items Applications to update. Maximum 10 items. |
A list of applications.
Bad request.
The caller is not authenticated or does not have the required permissions.
The application or organization does not exist, or belongs to a different organization.
{- "items": [
- {
- "id": "f4a3e291-7682-4148-89c0-be3a8f17eb23",
- "update": {
- "name": {
- "set": "New Name"
}, - "description": {
- "set": "string"
}, - "projectNames": {
- "set": [
- "publicdata"
]
}
}
}
]
}{- "items": [
- {
- "id": "f4a3e291-7682-4148-89c0-be3a8f17eb23",
- "name": "My Data Portal",
- "description": "Customer-facing data portal for project ACME-PROD.",
- "projectNames": [
- "publicdata"
], - "createdTime": 1730204346000,
- "lastUpdatedTime": 1730204346000
}
], - "nextCursor": "string"
}