Sign in

Create post comment

documented

Create a new comment on a post.

POST /posts/{id}/commentsPostsno implementation yet0 runs
No 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://blogin.co/api/rest/posts/{{$id}}/comments' \
  -X POST \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer {{BLOGIN_API_KEY}}' \
  --data-raw '{\n    "parent": {{$parent}},\n    "text": "{{$text}}",\n    "author": {\n      "id": {{$author_id}}\n    },\n    "approved": {{$approved}}\n  }'