Modify items
documentedBatch or single actions to modify a user's Pocket items (archive, readd, favorite, delete, tag changes, etc.).
POST /v3/sendItemsno 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://getpocket.com/v3/send" \
-X POST \
-H "Content-Type: application/json; charset=UTF-8" \
-H "Accept: application/json" \
-d '{"consumer_key":"{{GETPOCKET_API_KEY}}","access_token":"{{OAUTH2_ACCESS_TOKEN}}","actions":[{"action":"archive","item_id":"{{$item_id}}","time":"{{$time}}"}]}'