Sign in

Add media items to album

documented

Adds one or more app created media items in a user's Google Photos library to an app created album.

POST /v1/albums/{albumId}:batchAddMediaItemsAlbumsno 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://photoslibrary.googleapis.com/v1/albums/{{$album_id}}:batchAddMediaItems" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"mediaItemIds": ["{{$media_item_id_1}}", "{{$media_item_id_2}}", "{{$media_item_id_3}}"]}'
Add media items to album · Google Photos · OpenIntegrations