Fetch an app's bug report instances plot
/apps/{id}/bugReports/plots/instancesFetch an app's bug report instances plot, optionally narrowed by a filter expression.
Authorization
bearerAuth 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
App's UUID.
uuidQuery Parameters
ISO 8601 UTC string in milliseconds precision. Example: 2023-11-01T18:30:00.000Z. Omitting both from and to returns the last seven days.
ISO 8601 UTC string in milliseconds precision. Example: 2023-11-01T18:30:00.000Z. Omitting both from and to returns the last seven days.
Conditions joined by AND or OR and grouped with parentheses,
each reading key:operator:values with the names
/apps/{id}/filters/keys publishes. AND binds tighter than OR.
version_name:in:[1.2.0,1.1.9] AND mapping_type:not_in:jsbundle(version_name:contains:SNAPSHOT AND mapping_type:in:proguard) OR patch_id:is_setAn operator taking no values ends its condition, as
patch_id:is_set does. Double-quote a value holding a space,
comma, bracket, colon or quote, with \" and \\ inside.
At most 4096 bytes, 32 conditions, 4 levels of nesting and 200 values in one condition.
IANA timezone used to bucket and format datetime values in the response. Example: Asia/Kolkata.
Time bucket used for plot aggregation. Defaults to days.
Value in
- "minutes"
- "hours"
- "days"
- "months"
Response Body
application/json
curl -X GET "https://example.com/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/bugReports/plots/instances?timezone=string"[ { "id": "1.0 (1)", "data": [ { "datetime": "2024-05-24", "instances": 3 }, { "datetime": "2024-06-13", "instances": 1 } ] }, { "id": "0.9.0-SNAPSHOT.debug (900)", "data": [ { "datetime": "2024-11-14", "instances": 1 } ] }]Think this page can be better?
Open an issue