build history
- Print
- PDF
build history
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
View the SourceBuild project build history.
Requests
API URL
GET {SOURCEBUILD_API_URL}/api/v1/project/{projectId}/history
Request parameters
Item | Type | Description | Remarks |
---|---|---|---|
projectId | string | Project ID | View with projectList API |
Request queries
None
Request bodies
None
Responses
Response bodies
{
"total": "number",
"history": [
{
"projectId": "number",
"buildId": "string",
"begin": "number",
"end": "number",
"userId": "string",
"status": "string",
"failedPhase": "string" | "null"
}
]
}
Item | Type | Description | Remarks |
---|---|---|---|
total | number | Build history count | |
history[].projectId | number | Project ID | |
history[].buildId | string | Build history ID | |
history[].begin | number | Build start time | |
history[].end | number | Build complete time | |
history[].userId | string | Builder user ID | |
history[].status | string | Build status | |
history[].failedPhase | string | Build failed phase | Null when build succeeds |
Was this article helpful?