DebugFileService¶
Source definition: src/bitdrift/public/unary/debug_files/v1/api.proto#L14-L18
Manages debug files for the authenticated organization.
ListDebugFiles¶
Lists debug files matching the specified filter criteria.
| Request | Response |
|---|---|
Example Request
URL: https://api-public.bitdrift.io/bitdrift.public.unary.debug_files.v1.DebugFileService/ListDebugFiles
See calling the API for authentication and request details.
JSON
{
"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
}