Create comment
documentedCreate a comment related to a thread, record, or list entry.
POST /v2/commentsCommentsno 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://api.attio.com/v2/comments" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{
"data": {
"format": "plaintext",
"content": "{{$content}}",
"author": {
"type": "workspace-member",
"id": "{{$author_id}}"
},
"thread_id": "{{$thread_id}}",
"created_at": "{{$created_at}}"
}
}'