Skip to main content
POST
/
projects
/
{project_id}
/
team-access
Grant team access to a project
curl --request POST \
  --url {schemes}://api.upsun.com/projects/{project_id}/team-access \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "team_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

project_id
string
required

The ID of the project.

Body

application/json
team_id
string
required

ID of the team.

Response

No Content

Last modified on June 16, 2026