Create Comment
documentedCreate a new comment on a specific issue. This is the endpoint used to add comments to an issue.
POST /api/projects/{project_id}/issues/{issue_id}Projectsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://{{$sifter_subdomain}}.sifterapp.com/api/projects/{{$project_id}}/issues" \
-X POST \
-H "X-Sifter-Token: {{SIFTERAPP_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"subject": "{{$title}}", "body": "{{$description}}", "category_name": "{{$category}}", "priority_name": "{{$priority}}", "milestone_name": "{{$milestone}}", "assignee_name": "{{$assignee}}"}'