ListNamedSandboxesRequest

September 5, 2026 ยท View on GitHub

Example Usage

import { ListNamedSandboxesRequest } from "@vercel/sdk/models/listnamedsandboxesop.js";

let value: ListNamedSandboxesRequest = {
  project: "prj_abc123",
  teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l",
  slug: "my-team-url-slug",
};

Fields

FieldTypeRequiredDescriptionExample
projectstring:heavy_minus_sign:The unique identifier or name of the project to list named sandboxes for.prj_abc123
limitnumber:heavy_minus_sign:Maximum number of named sandboxes to return in the response. Used for pagination.20
sortBymodels.QueryParamSortBy:heavy_minus_sign:Field to sort by.
namePrefixstring:heavy_minus_sign:Filter named sandboxes whose name starts with this prefix. Only valid when sortBy=name.
cursorstring:heavy_minus_sign:Opaque pagination cursor from a previous response.
sortOrdermodels.QueryParamSortOrder:heavy_minus_sign:Sort direction. Defaults to desc.
statusmodels.QueryParamStatus:heavy_minus_sign:Filter named sandboxes by status. Only valid when sortBy is createdAt.
tagsmodels.QueryParamTags:heavy_minus_sign:Filter sandboxes by tag. Format: "key:value". Only one tag filter is supported at a time.
teamIdstring:heavy_minus_sign:The Team identifier to perform the request on behalf of.team_1a2b3c4d5e6f7g8h9i0j1k2l
slugstring:heavy_minus_sign:The Team slug to perform the request on behalf of.my-team-url-slug