Skip to main content

Get Builds

GET /build/:author/:repository/:branch/:build

Get the specific build information of a project.

Path parameters

NameTypeDescription
authorstringThe project author.
repositorystringThe project repository.
branchstringThe project branch.
buildnumber"latest"

Response data schema

{
"id": number, // the build number
"commit": string, // the commit hash this build is built on
"author": string, // the commit author
"timestamp": number, // the commit timestamp
"message": string, // the commit message
"success": boolean, // whether this build is successful
"buildTimestamp": number, // the timestamp of this build
"target": string, // the build artifact filename
"sha1": string // the sha1 hash of the build artifact
}