Description: Updates an existing project's properties.
Since: 7.17.4
Security: Requires a user with the Platform Administrator role.
Usage: PUT ${baseUrl}/access/api/v1/projects/{project_key}
Produces: application/json
Parameters:
Name | Description |
|---|---|
(path) | The project key |
(body) | Project object that needs to be patched |
Header parameter: Authorization: Bearer
Sample Request:
{
"display_name": "project name",
"description": "modified project description",
"admin_priviledges": {
"manage_members": true,
"manage_resources": true,
"index_resources": false,
"manage_remote_repository": true
},
"storage_quota_bytes": 10000,
"soft_limit": false,
"storage_quota_email_notification": true
}Sample Response:
{
"display_name": "artifactory",
"description": "The binary repository manager",
"admin_privileges": {
"manage_members": true,
"manage_resources": true,
"manage_remote_repository": true
},
"storage_quota_bytes": 0,
"soft_limit": false,
"storage_quota_email_notification": true
"project_key": "rtfct"
}