Build
Update a build
Updates a build.
patch/build/{id}
Path parameters
idinteger required
The ID of the build to read.
Request body
Example request
{
"status": "pending"
}Response
The build was updated.
Example response
{
"id": 123,
"application_id": 345,
"branch": "main",
"commit": {
"id": "123abc",
"permalink": "https://example.com/1234"
},
"created_at": "2021-01-01T00:00:00Z",
"updated_at": "2021-01-02T00:00:00Z",
"description": "This is a description of the build.",
"nrn": "organization=1:account=2:namespace=3:application=234:build=123",
"status": "pending"
}