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