import GboxSDK from "gbox-sdk";const gboxSDK = new GboxSDK({ apiKey: process.env["GBOX_API_KEY"] // This is the default and can be omitted});async function main() { const box = await gboxSDK.create({ type: "android" }); const album = await box.media.getAlbum("vacation-2024"); await album.deleteMedia("IMG_001.jpg");}main();
Media
Delete media from album
Delete a specific media file from an album
DELETE
/
boxes
/
{boxId}
/
media
/
albums
/
{albumName}
/
media
/
{mediaName}
JavaScript
Copy
Ask AI
import GboxSDK from "gbox-sdk";const gboxSDK = new GboxSDK({ apiKey: process.env["GBOX_API_KEY"] // This is the default and can be omitted});async function main() { const box = await gboxSDK.create({ type: "android" }); const album = await box.media.getAlbum("vacation-2024"); await album.deleteMedia("IMG_001.jpg");}main();