provider tasks POST
/api/projects/{project_id}/tasks/{task_id}/runs/{run_id}/living_artifacts/ @utdk/posthog
/api/projects/{project_id}/tasks/{task_id}/runs/{run_id}/living_artifacts/ Create a living artifact for a task run
Create a stable, editable artifact handle from direct markdown/text content or an existing run artifact. Slack adapters deliver into the mapped Slack thread; document artifacts use external connector storage when available.
- 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
- run_id path required
- string
- task_id path required
- 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.tasksRunsLivingArtifactsCreate({
"artifact_type": "document"
})