Invite users to team
POST
/
teams
/{team_id}
/users
Request Body
application/json
Requiredadd users to team body
body
Requiredarray<object>
Invite Users to Team request body
Path Parameters
team_id
Requiredstring
ID of team
Header Parameters
Authorization
Requiredstring
Value: "Bearer <token>"; visit the "User Settings" page in the DevZero dashboard to generate a token
curl -X POST "https://api.devzero.io/backend/v0/teams/string/users" \
-H "Authorization: string" \
-H "Content-Type: application/json" \
-d '[
{
"email": "user@example.com",
"permissions": "string"
}
]'
OK
[
{
"email": "user@example.com",
"id": "string",
"secure_sign_in_url": "string",
"team_id": "string"
}
]