Skip to content

Latest commit

 

History

History
40 lines (35 loc) · 2.4 KB

patchteamrequest.md

File metadata and controls

40 lines (35 loc) · 2.4 KB

PatchTeamRequest

Example Usage

import { PatchTeamRequest } from "@vercel/sdk/models/patchteamop.js";

let value: PatchTeamRequest = {
  teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l",
  slug: "my-team-url-slug",
  requestBody: {
    description:
      "Our mission is to make cloud computing accessible to everyone",
    emailDomain: "example.com",
    name: "My Team",
    previewDeploymentSuffix: "example.dev",
    regenerateInviteCode: true,
    saml: {
      enforced: true,
    },
    slug: "my-team",
    enablePreviewFeedback: "on",
    enableProductionFeedback: "on",
    sensitiveEnvironmentVariablePolicy: "on",
    remoteCaching: {
      enabled: true,
    },
    hideIpAddresses: false,
    hideIpAddressesInLogDrains: false,
  },
};

Fields

Field Type Required Description Example
teamId string ✔️ The Team identifier to perform the request on behalf of. team_1a2b3c4d5e6f7g8h9i0j1k2l
slug string The Team slug to perform the request on behalf of. my-team-url-slug
requestBody models.PatchTeamRequestBody ✔️ N/A