Skip to main content
POST
/
projects
/
{id}
/
users
Invite user to project
curl --request POST \
  --url https://api.example.com/projects/{id}/users \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "role": "user"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Project ID

Body

application/json
email
string
required
role
enum<string>
required
Available options:
user,
admin,
project_manager,
super_admin

Response

User successfully invited to project