provider notebooks GET
/api/projects/{project_id}/notebooks/ @utdk/posthog
/api/projects/{project_id}/notebooks/ notebooks_list
The API for interacting with Notebooks. This feature is in early access and the API can have breaking changes without announcement.
- contains query
- Filter for notebooks that match a provided filter. Each match pair is separated by a colon, multiple match pairs can be sent separated by a space or a comma
- string
- created_by query
- The UUID of the Notebook's creator
- string
- date_from query
- Filter for notebooks created after this date & time
- string
- date_to query
- Filter for notebooks created before this date & time
- string
- limit query
- Number of results to return per page.
- integer
- offset query
- The initial index from which to return the results.
- 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
- user query
- If any value is provided for this parameter, return notebooks created by the logged in user.
- string
Try it
Authentication
Configure credentials for PostHog API
Code snippet
Updates live as you fill in the form above.
TypeScript
import posthog from '@utdk/posthog';
await posthog.notebooksList()