Gets information related to a specific build.
GET/v2/projects/:project/versions/:version/builds/:build
Gets information related to a specific build.
Request
Path Parameters
project stringrequired
Possible values: Value must match regular expression [a-z]+
The project identifier.
Example: geyser
version stringrequired
Possible values: Value must match regular expression (?:latest|[0-9.]+-?(?:pre|SNAPSHOT)?(?:[0-9.]+)?)?
A version of the project.
build int32required
A build of the version.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
project_id string
Possible values: Value must match regular expression [a-z]+
project_name string
version string
Possible values: Value must match regular expression (?:latest|[0-9.]+-?(?:pre|SNAPSHOT)?(?:[0-9.]+)?)?
build int32
Possible values: Value must match regular expression \d+
time date-time
channel string
Possible values: [default
, experimental
]
promoted boolean
changes
object[]
commit string
summary string
message string
downloads
object
property name*
Download
name string
Possible values: Value must match regular expression [a-z0-9._-]+
sha256 string
Possible values: Value must match regular expression [a-f0-9]{64}
{
"project_id": "geyser",
"project_name": "Geyser",
"version": "2.1.0",
"build": 30,
"time": "2024-07-14T21:42:40.605Z",
"channel": "default",
"promoted": true,
"changes": [
{
"commit": "string",
"summary": "string",
"message": "string"
}
],
"downloads": {}
}
Loading...