Skip to main content

Crashes - Mark Resolving

Endpoint

/i/crashes/resolving

Overview

Marks crash groups as actively being resolved (is_resolving=true).

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

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.crashesArray of StringsNoCrash group IDs.
args.crash_idStringNoSingle crash group ID.

Provide args.crashes or args.crash_id.

Examples

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

Response

Success Response

{
"result": "Success"
}

Response Fields

FieldTypeDescription
resultStringSuccess when resolving flag update path runs.

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.crashes or [args.crash_id].
  • Sets is_resolving=true for matched groups.
  • Emits crash_resolving system log action for each processed crash entry.
Implementation details

Database Collections

CollectionUsed forData touched by this endpoint
countly.app_crashgroups{appId}Crash statusUpdates is_resolving=true.
countly.systemlogsAudit trailReceives crash_resolving action(s).