Execution History List
- Print
- PDF
Execution History List
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
View the SourcePipeline history list.
Requests
API URL
GET {SOURCEPIPELINE_API_URL}/project/{projectId}/history
Request parameters
Item | Type | Requirement status | Description | Remarks |
---|---|---|---|---|
projectId | string | Y | Project ID |
Request queries
Item | Type | Requirement status | Description | Remarks |
---|---|---|---|---|
pageNo | string | N | Page number. Forward the entire list if there is no pageNo or pageSize | required if pageSize exist |
pageSize | string | N | Page size. Forward the entire list if there is no pageNo or pageSize | required if pageNo exist |
Request bodies
None
Responses
Response bodies
{
"historyList": [
{
"projectId": "number",
"id": "number",
"requestType": "string" ,
"requestId": "string",
"begin": "number",
"end": "number",
"status": "string"
}
]
}
Item | Type | Description | Remarks |
---|---|---|---|
historyList.projectId | number | Pipeline project ID | |
historyList.id | number | Pipeline task result ID | |
historyList.requestType | string | Pipeline request type | console or trigger |
historyList.requestId | string | User that requested running the pipeline | |
historyList.begin | number | Pipeline run start time (timestamp) | |
historyList.end | number | Pipeline run end time (timestamp) | |
historyList.status | string | Pipeline run status |
Was this article helpful?