DeleteSandboxRequest
August 27, 2026 ยท View on GitHub
Example Usage
import { DeleteSandboxRequest } from "@vercel/sdk/models/deletesandboxop.js";
let value: DeleteSandboxRequest = {
name: "my-sandbox",
teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l",
slug: "my-team-url-slug",
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
name | string | :heavy_check_mark: | The sandbox name to delete. | my-sandbox |
projectId | string | :heavy_minus_sign: | The project ID that owns the named sandbox. When provided, takes precedence over OIDC project context. | |
deleteOrphanSnapshots | boolean | :heavy_minus_sign: | When true, snapshots of the deleted sandbox that are not referenced by any other sandbox are also deleted asynchronously. Defaults to false. | |
teamId | string | :heavy_minus_sign: | The Team identifier to perform the request on behalf of. | team_1a2b3c4d5e6f7g8h9i0j1k2l |
slug | string | :heavy_minus_sign: | The Team slug to perform the request on behalf of. | my-team-url-slug |