import { GetProjectMembersRequest } from "@vercel/sdk/models/getprojectmembersop.js";
let value: GetProjectMembersRequest = {
idOrName: "prj_pavWOn1iLObbXLRiwVvzmPrTWyTf",
limit: 20,
since: 1540095775951,
until: 1540095775951,
teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l",
slug: "my-team-url-slug",
};
Field |
Type |
Required |
Description |
Example |
idOrName |
string |
✔️ |
The ID or name of the Project. |
prj_pavWOn1iLObbXLRiwVvzmPrTWyTf |
limit |
number |
➖ |
Limit how many project members 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 project members by their name, username, and email. |
|
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 |