List 1000 archived builds of an app
List the first 1000 archived builds of a specified Bitrise app. Set parameters to filter builds:
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}/archived-builds
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/archived-builds?after=42&before=42' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"abort_reason": "string",
"branch": "string",
"build_artifacts": [
{
"artifact_meta": {},
"artifact_type": "string",
"created_at": "string",
"file_size_bytes": 42,
"id": "string",
"is_public_page_enabled": true,
"public_page_token": "string",
"title": "string"
}
],
"build_number": 42,
"commit_hash": "string",
"commit_message": "string",
"credit_cost": 42,
"finished_at": "string",
"machine_type_id": "string",
"original_build_params": {},
"pipeline_workflow_id": "string",
"pull_request_id": 42,
"pull_request_target_branch": "string",
"pull_request_view_url": "string",
"slug": "string",
"stack_identifier": "string",
"started_on_worker_at": "string",
"status": 42,
"status_text": "string",
"tag": "string",
"triggered_by": "string",
"triggered_workflow": "string"
}
],
"paging": {
"next": "string",
"page_item_limit": 42,
"total_item_count": 42
}
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}