Crashes - Show Crash Groups
Endpoint
/i/crashes/show
Overview
Unhides one or more crash groups.
Authentication
Pass api_key or auth_token as a query parameter, or send countly-token as a header. See Authentication.
Permissions
Requires crashes Update permission.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
api_key | String | Conditional | Required if auth_token is not provided. |
auth_token | String | Conditional | Required if api_key is not provided. |
app_id | String | Yes | Target app ID. |
args | JSON String (Object) | Yes | Action payload. |
args.crash_id | String | No | Single crash group ID. |
args.crashes | Array of Strings | No | List of crash group IDs. |
Provide args.crashes or args.crash_id.
Examples
/i/crashes/show?api_key=YOUR_API_KEY&app_id=6991c75b024cb89cdc04efd2&args={"crashes":["crash_group_1","crash_group_2"]}
Response
Success Response
{
"result": "Success"
}
Response Fields
| Field | Type | Description |
|---|---|---|
result | String | Success when operation completes. |
Error Responses
400
{
"result": "Please provide args parameter"
}
Standard auth/permission errors from update validation can also be returned.
Behavior
- Resolves crash IDs from
args.crashesor[args.crash_id]. - Updates matching crash groups with
is_hidden=false. - Emits
crash_shownsystem log action for each processed crash entry.
Related Endpoints
Implementation details
Database Collections
| Collection | Used for | Data touched by this endpoint |
|---|---|---|
countly.app_crashgroups{appId} | Crash group visibility | Updates is_hidden=false for selected groups. |
countly.systemlogs | Audit trail | Receives crash_shown action(s). |