Measure logo
REST API ReferenceDashboard APIApps

Fetch an app's issue journey map

GET/apps/{id}/journey

Fetch an app's issue journey map. Filter time range using from & to query string parameters. Filter versions using versions & version_codes query string parameters.

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

Query Parameters

from?string

ISO8601 timestamp to include crashes after this time.

to?string

ISO8601 timestamp to include crashes before this time.

versions?string

List of comma separated version identifier strings to return only matching crashes.

version_codes?string

List of comma separated version codes to return only matching crashes.

bigraph?string

Choose journey's directionality. 0 computes a unidirectional graph. Default is 1.

Response Body

application/json

curl -X GET "https://example.com/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/journey"
{  "links": [    {      "source": "au.com.shiftyjelly.pocketcasts.ui.MainActivity",      "target": "au.com.shiftyjelly.pocketcasts.player.view.PlayerContainerFragment",      "value": 4    },    {      "source": "au.com.shiftyjelly.pocketcasts.account.onboarding.OnboardingActivity",      "target": "au.com.shiftyjelly.pocketcasts.ui.MainActivity",      "value": 1    }  ],  "nodes": [    {      "id": "au.com.shiftyjelly.pocketcasts.ui.MainActivity",      "issues": {        "anrs": [],        "crashes": []      }    },    {      "id": "au.com.shiftyjelly.pocketcasts.discover.view.DiscoverFragment",      "issues": {        "anrs": [],        "crashes": [          {            "id": "018f5c68-6fe0-75c9-81ba-b36871c8b5fa",            "title": "java.lang.IllegalStateException",            "count": 18          }        ]      }    }  ],  "totalIssues": 30}
Empty
Empty
Empty
Empty
Empty

Think this page can be better?

Open an issue