import { CreateConnectorRequest } from "@vercel/sdk/models/createconnectorop.js";
let value: CreateConnectorRequest = {
teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l",
slug: "my-team-url-slug",
};
| 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 |
|