Get the build log of a build
Get the build log of a specified build of a Bitrise app. You can get the build slug either by calling the /builds endpoint or by clicking on the build on bitrise.io and copying the slug from the URL. Preview of the log is returned in log_chunks
field in JSON format. You can download the full raw log in txt by using the signed url returned in expiring_raw_log_url
. Be aware that this url is expiring in 10 minutes!
Path parameters
-
app-slug
string Required App slug
-
build-slug
string Required Build slug
GET
/apps/{app-slug}/builds/{build-slug}/log
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/builds/{build-slug}/log' \
--header "Authorization: $API_KEY"
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}