Measure logo
REST API ReferenceDashboard APIErrors

Fetch an error group's common path

GET/apps/{id}/errorGroups/{errorGroupId}/path

Fetch an error group's common path, the most frequent sequence of events leading up to the error.

No filter query parameters are accepted. Analyzes up to 50 recent sessions and returns steps with at least 30% confidence. Returns sessions_analyzed: 0 with an empty steps array if no path can be determined.

Authorization

bearerAuth
AuthorizationBearer <token>

User access token issued at sign-in. Sent as Authorization: Bearer <access-token> unless cookies are used to send tokens. The /auth/refresh and /auth/signout endpoints expect the session's refresh token in the same header format instead.

In: header

Path Parameters

id*string

App's UUID.

Formatuuid
errorGroupId*string

Error group fingerprint.

Response Body

application/json

curl -X GET "https://example.com/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/errorGroups/string/path"
{  "sessions_analyzed": 42,  "steps": [    {      "description": "Navigated to screen: HomeScreen",      "thread_name": "main",      "confidence_pct": 88.1    },    {      "description": "User tapped on CheckoutButton",      "thread_name": "main",      "confidence_pct": 71.4    },    {      "description": "Crash: java.lang.NullPointerException - Attempt to invoke virtual method on a null object reference",      "thread_name": "main",      "confidence_pct": 100    }  ]}
Empty
Empty
Empty
Empty
Empty

Think this page can be better?

Open an issue