DebugFileService¶
Manages debug files for the authenticated organization.
ListDebugFiles¶
Lists debug files matching the specified filter criteria.
Request:
Response:
Example CURL¶
Bash
curl -X POST https://api-public.bitdrift.io/bitdrift.public.unary.debug_files.v1.DebugFileService/ListDebugFiles \
-H "x-bitdrift-api-key: <key>" \
-H "Content-Type: application/json" \
-d '{
"app_scopes": [
{
"app_build_id": "456",
"app_id": "com.example.app",
"app_version": "1.2.3",
"platform": "APPLE"
}
],
"file_hash": "abc123",
"pagination": {
"limit": 25,
"offset": 0
},
"processing_state": "PROCESSED",
"sort": [
{
"direction": "DESCENDING",
"key": "CREATED_AT"
}
],
"type": "DEBUG_FILE"
}'
Example Response¶
JSON
{
"debug_files": [
{
"app_scopes": [
{
"app_build_id": "456",
"app_id": "com.example.app",
"app_version": "1.2.3",
"platform": "APPLE"
}
],
"created_at": "2024-01-15T09:30:00Z",
"file_hash": "abc123",
"processing_state": "PROCESSED",
"type": "PROGUARD",
"updated_at": "2024-01-15T09:30:00Z"
}
],
"total_count": 42
}