Sign in

Update post

documented

Update a post's content and metadata.

POST /posts/{id}Postsno 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/{{$post_id}}" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{BLOGIN_API_KEY}}" \
  -d '{"title": "{{$title}}", "text": "{{$text}}", "published": {{$published}}, "date_published": "{{$date_published}}", "wiki": {{$wiki}}, "important": {{$important}}, "pinned": {{$pinned}}, "author": {"id": {{$author_id}}}, "categories": [{"id": {{$category_id}}}], "teams": [{"id": {{$team_id}}}], "notify": {{$notify}}, "visibility_teams": [{"id": {{$visibility_team_id}}}] }'
Update post · BlogIn · OpenIntegrations