provider task_mentions GET
/api/projects/{project_id}/task_mentions/ @utdk/posthog
/api/projects/{project_id}/task_mentions/ List mentions of the requester
Thread messages that @-mention the requester, newest first, restricted to tasks they can see.
- limit query
- Maximum number of mentions to return (newest first).
- 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
- since query
- Only return mentions created after this ISO 8601 timestamp.
- 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.taskMentionsList({
"limit": 100
})