provider error_tracking POST /api/projects/{project_id}/error_tracking/query/issue/
@utdk/posthog /api/projects/{project_id}/error_tracking/query/issue/
Get compact error tracking issue details
Fetch one error tracking issue with impact counts, top in_app frame, latest release, and optional sparkline.
project_id path required
Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.
string

Try it

Authentication
Configure credentials for PostHog API
errorTrackingQueryIssueCreate
POST/api/projects/{project_id}/error_tracking/query/issue/
Fetch one error tracking issue with impact counts, top in_app frame, latest release, and optional sparkline.

Parameters

required

Project ID of the project you're trying to access. To find the ID of the project, make a call to /api/projects/.

Input

required

Error tracking issue ID.

Date range for issue impact and latest-event metadata. Defaults to the last 7 days.

When true, exclude internal/test account data from results. Defaults to true.

Volume buckets. Maximum 200.

Set true to include a compact numeric occurrence sparkline. Defaults to false.

Configure credentials above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import posthog from '@utdk/posthog';

await posthog.errorTrackingQueryIssueCreate({
  "filterTestAccounts": true,
  "volumeResolution": 0,
  "includeSparkline": false
})