Sign in

Edit a post (Neue Post Format)

documented

Edit a post by ID using the Neue Post Format.

PUT /v2/blog/{blog-identifier}/posts/{post-id}Blogsno 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)

The endpoint you provided (PUT /v2/blog/{blog-identifier}/posts/{post-id}) does not exist in Tumblr's API v2. The official method to edit a post is POST to /v2/blog/{blog-identifier}/post/edit with the post id and updated fields. See the Postman docs showing the edit endpoint and Tumblr's auth guidance indicating OAuth is required for write actions. ([postman.com](https://www.postman.com/api-evangelist/tumblr/documentation/wa7adwz/tumblr?utm_source=openai))

npx -y keychains@latest curl "https://api.tumblr.com/v2/blog/{{$blog_base_hostname}}/post/edit" \
  -X POST \
  -H "Authorization: OAuth oauth_consumer_key=\"{{TUMBLR_API_KEY}}\", oauth_token=\"{{OAUTH1_TOKEN}}\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"{{$oauth_timestamp}}\", oauth_nonce=\"{{$oauth_nonce}}\", oauth_version=\"1.0\", oauth_signature=\"{{OAUTH1_SIGNATURE}}\"" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "id={{$post_id}}&type={{$type}}&title={{$title}}&body={{$body}}&tags={{$tags}}&date={{$date}}&markdown={{$markdown}}&tweet={{$tweet}}"
Edit a post (Neue Post Format) · tumblr · OpenIntegrations