List the open build requests for an app
List the existing open build requests of a specified Bitrise app
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}/build-requests
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/build-requests' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"build_params": {},
"created_at": "string",
"pull_request_url": "string",
"slug": "string"
}
]
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}