Reference
1 min read
post/v1/projects/{idOrName}/members

Adds a new member to the project.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/projects/prj_pavWOn1iLObbXLRiwVvzmPrTWyTf/members?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"body": {
3
"role": "ADMIN",
4
"email": "entity@example.com",
5
"uid": "ndlgr43fadlPyCtREAqxxdyFK",
6
"username": "example"
7
},
8
"headers": {
9
"Authorization": "Bearer <TOKEN>"
10
},
11
"method": "post"
12
})
Path Params
Query Params
Body Params
Path ParameterDescription

idOrName

string

required
The ID or name of the Project.
Example:prj_pavWOn1iLObbXLRiwVvzmPrTWyTf

Responds with the project ID on success.

  • idstringRequired
CodeDescription
200Responds with the project ID on success.
400
  • One of the provided values in the request body is invalid.

  • One of the provided values in the request query is invalid.

401
403You do not have permission to access this resource.
500
get/v1/projects/{idOrName}/members

Lists all members of a project.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/projects/prj_pavWOn1iLObbXLRiwVvzmPrTWyTf/members?limit=20&search=SOME_STRING_VALUE&since=1540095775951&slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE&until=1540095775951", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

idOrName

string

required
The ID or name of the Project.
Example:prj_pavWOn1iLObbXLRiwVvzmPrTWyTf
  • One of the following objects
  • One of
CodeDescription
200Paginated list of members for the project.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
delete/v1/projects/{idOrName}/members/{uid}

Remove a member from a specific project

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/projects/prj_pavWOn1iLObbXLRiwVvzmPrTWyTf/members/ndlgr43fadlPyCtREAqxxdyFK?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "delete"
6
})
Path Params
Query Params
Path ParameterDescription

idOrName

string

required
The ID or name of the Project.
Example:prj_pavWOn1iLObbXLRiwVvzmPrTWyTf

uid

string

required
The user ID of the member.
Example:ndlgr43fadlPyCtREAqxxdyFK
  • idstringRequired
CodeDescription
200
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
Last updated on April 27, 2024