Get Projects List

JFrog REST APIs

Content Type
REST API

Description: Returns all projects the requesting user manages (Project Admin or Platform Administrator).

Since: 7.117.4

Security: Requires authentication using Access Tokens, either as admin, a user with the Platform Administrator role, or starting from Artifactory Self-Hosted version 7.117.5, using a scoped token with the project:<project_key>:r scope. Note that if the request is issued by a Project Admin, only the projects listed under the Project Admin's scope will be listed.

Usage: GET ${baseUrl}/access/api/v1/projects

Produces: application/json; charset=UTF-8

Header parameter: -H "Authorization: Bearer <ACCESS_TOKEN>"

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"
  }
]