Skip to main content
POST
/
api
/
v1
/
projects
/
{project_id}
/
users
/
invite
Add Non Platform User To Project
curl --request POST \
  --url https://api.example.com/api/v1/projects/{project_id}/users/invite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "FirstName": "<string>",
  "LastName": "<string>",
  "Email": "jsmith@example.com",
  "PhoneNumber": "<string>",
  "Role": "ADMIN",
  "Status": "ACTIVE"
}
'
{
  "data": {},
  "success": true
}

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

Body

application/json
FirstName
string
required
LastName
string
required
Email
string<email>
required
PhoneNumber
string | null
Role
string
default:ADMIN
Status
string
default:ACTIVE

Response

Successful Response

success
boolean
required
data
unknown