Sign in

Move bookmark

documented

Move the specified bookmark to a user-created folder.

POST /api/1/bookmarks/moveBookmarksno 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://www.instapaper.com/api/1/bookmarks/move" \
  -X POST \
  -H "Authorization: OAuth oauth_consumer_key=\"{{INSTAPAPER_API_KEY}}\", oauth_token=\"{{OAUTH2_ACCESS_TOKEN}}\", oauth_signature_method=\"HMAC-SHA1\", oauth_signature=\"{{$oauth_signature}}\", oauth_timestamp=\"{{$oauth_timestamp}}\", oauth_nonce=\"{{$oauth_nonce}}\", oauth_version=\"1.0\"" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -d "bookmark_id={{$bookmark_id}}&folder_id={{$folder_id}}"