Sign in

Update album

documented

Update the app created album with the specified id.

PATCH /v1/albums/{albumId}Albumsno 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}}?updateMask=title&updateMask=coverPhotoMediaItemId" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"title": "{{$title}}", "coverPhotoMediaItemId": "{{$cover_photo_media_item_id}}"}'
Update album · Google Photos · OpenIntegrations