Skip to main content

Crashes - Show Crash Groups

Endpoint

/i/crashes/show

Overview

Unhides one or more crash groups.

Authentication

Countly API supports three authentication methods:

  1. api_key=YOUR_API_KEY
  2. auth_token=YOUR_AUTH_TOKEN
  3. countly-token: YOUR_AUTH_TOKEN

Permissions

Requires crashes Update permission.

Request Parameters

ParameterTypeRequiredDescription
api_keyStringConditionalRequired if auth_token is not provided.
auth_tokenStringConditionalRequired if api_key is not provided.
app_idStringYesTarget app ID.
argsJSON String (Object)YesAction payload.
args.crash_idStringNoSingle crash group ID.
args.crashesArray of StringsNoList of crash group IDs.

Provide args.crashes or args.crash_id.

Response

Success Response

{
"result": "Success"
}

Response Fields

FieldTypeDescription
resultStringSuccess when operation completes.

Error Responses

  • 400
{
"result": "Please provide args parameter"
}

Standard auth/permission errors from update validation can also be returned.

Behavior/Processing

  • Resolves crash IDs from args.crashes or [args.crash_id].
  • Updates matching crash groups with is_hidden=false.
  • Emits crash_shown system log action for each processed crash entry.

Database Collections

CollectionUsed forData touched by this endpoint
countly.app_crashgroups{appId}Crash group visibilityUpdates is_hidden=false for selected groups.
countly.systemlogsAudit trailReceives crash_shown action(s).

Examples

/i/crashes/show?api_key=YOUR_API_KEY&app_id=6991c75b024cb89cdc04efd2&args={"crashes":["crash_group_1","crash_group_2"]}

Last Updated

2026-03-07