List the workflows of an app
List the workflows that were triggered at any time for a given Bitrise app. Note that it might list workflows that are currently not defined in the app's bitrise.yml
configuration - and conversely, workflows that were never triggered will not be listed even if they are defined in the bitrise.yml
file.
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}/build-workflows
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/build-workflows' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
"string"
]
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}