Stage List
- Print
- PDF
Stage List
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Summary
Search the stage list of the SourceDeploy project.
Request
API URL
GET {SOURCEDEPLOY_API_URL}/project/{projectId}/stage
Request parameter
Item | Type | Description | Remarks |
---|---|---|---|
projectId | string | Project ID | Search projectList |
Request query
Item | Requirement status | Type | Description | Remarks |
---|---|---|---|---|
stageName | N | string | Search by stage name | |
pageSize | N | string | Page size | Up to 100 (default: 100) |
pageNo | N | string | Page number | Starts from 1 |
Request body
None
Response
Response body
{
"project": {
"id": "number",
"name": "string"
},
"stageList": [
{
"id": "number",
"name": "string"
}
]
}
Item | Type | Description | Remarks |
---|---|---|---|
project.id | number | Project ID | |
project.name | string | Project name | |
stageList.id | number | stage id | |
stageList.name | string | Stage name |
Was this article helpful?