Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 5.91 KB

File metadata and controls

20 lines (15 loc) · 5.91 KB

CreateConnectorRequest

Example Usage

import { CreateConnectorRequest } from "@vercel/sdk/models/createconnectorop.js";

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

Fields

Field Type Required Description Example
teamId string The team ID that scopes the request. Do not send it with slug. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected. team_1a2b3c4d5e6f7g8h9i0j1k2l
slug string The team slug that scopes the request. Do not send it with teamId. If both are omitted, Vercel uses the team associated with the token or the authenticated user's default team. The request returns 401 if no team can be selected. my-team-url-slug
connectCreateConnectorRequest models.ConnectCreateConnectorRequest N/A