List the key-value cache items belonging to an app
List all the available cache items that the builds of the app created via the save-cache step.
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}/cache-items
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/cache-items' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"app_id": "string",
"archive_filename": "string",
"archive_size": 42,
"cache_key": "string",
"created_at": "string",
"expires_at": "string",
"id": "string",
"last_used_at": "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"
}