Skip to main content
POST
/
teams
/
{team_id}
/
project-access
Grant project access to a team
curl --request POST \
  --url {schemes}://api.upsun.com/teams/{team_id}/project-access \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "project_id": "<string>"
  }
]
'
{
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string
required

The ID of the team.

Body

application/json
project_id
string
required

ID of the project.

Response

No Content

Last modified on April 10, 2026