Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 3.8 KB

getteammembersrequest.md

File metadata and controls

26 lines (21 loc) · 3.8 KB

GetTeamMembersRequest

Example Usage

import { GetTeamMembersRequest } from "@vercel/sdk/models/getteammembersop.js";

let value: GetTeamMembersRequest = {
  limit: 20,
  since: 1540095775951,
  until: 1540095775951,
  role: "OWNER",
};

Fields

Field Type Required Description Example
limit number Limit how many teams should be returned 20
since number Timestamp in milliseconds to only include members added since then. 1540095775951
until number Timestamp in milliseconds to only include members added until then. 1540095775951
search string Search team members by their name, username, and email.
role models.QueryParamRole Only return members with the specified team role. OWNER
excludeProject string Exclude members who belong to the specified project.
eligibleMembersForProjectId string Include team members who are eligible to be members of the specified project.