Description: Returns the details of a selected lifecycle stage, such as its scope and associated repositories.
Since: 7.125.4
Usage: GET https://{{artifactory-host}}/access/api/v2/stages/{{stage-name}}
Query Parameters (optional):
Parameter | Type | Description |
|---|---|---|
| string | Filters the list for a specific project. |
Response Body:
Property | Type | Description |
|---|---|---|
| string | The stage name (must be unique within its |
| string | The scope of the stage ( |
| string | The project key (relevant when the |
| string | The stage category ( |
| array:string | The list of repository keys assigned to this stage. |
| array:string | The list of project keys where the stage is being used in its lifecycle. |
| string | The user who created the stage. |
| string | The date and time when the stage was created (ISO 8601 format). |
| string | The date and time when the stage was last modified (ISO 8601 format). |
Sample Request:
GET 'https://{host}.jfrog.io/access/api/v2/stages/production-us-east?project_key=mobile-app'
Authorization: ••••••
Sample Response:
{
"name": "production-us-east",
"scope": "project",
"project_key": "mobile-app",
"category": "promote",
"repositories": [
"docker-prod-us-east-local",
"generic-prod-us-east-local"
],
"used_in_lifecycle": ["mobile-app"],
"created_by": "pm_user",
"created_at": "2025-05-28T17:51:25Z",
"modified_at": "2025-05-28T17:59:25Z"
}
Status Codes:
Code | Description |
|---|---|
200 | Success |
401 | Bad Credentials |
403 | Permission Denied |
404 | Not Found |