provider taskstasks POST /api/projects/{project_id}/tasks/summaries/
@utdk/posthog /api/projects/{project_id}/tasks/summaries/
Fetch task summaries by ID
Returns summary for the requested tasks: `id`, `title`, `repository`, `created_at`, `updated_at`, and the latest run's `status` and `environment`.
limit query
Page size for the paginated response.
integer
offset query
Offset into the result set for pagination.
integer
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
tasksSummariesCreate
POST/api/projects/{project_id}/tasks/summaries/
Returns summary for the requested tasks: `id`, `title`, `repository`, `created_at`, `updated_at`, and the latest run's `status` and `environment`.

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/.

Page size for the paginated response.

Offset into the result set for pagination.

Input

required

Task IDs to fetch summaries for (max 5000). Response is paginated; follow the `next` cursor to retrieve all results.

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.tasksSummariesCreate()