Update Existing Project Properties

JFrog REST APIs

Content Type
REST API
ft:sourceType
Paligo

Description: Updates an existing project's properties.

Since: 7.17.4

Security: Requires a user assigned with the 'Administer the Platform' role permissions.

Usage: PUT ${baseUrl}/access/api/v1/projects/{project_key}

Produces: application/json

Parameters:

Name

Description

project_key *

string

(path)

The project key

body *

(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
  },
  "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
  },
  "storage_quota_bytes": 0,
  "soft_limit": false,
  "storage_quota_email_notification": true
  "project_key": "rtfct"
}