Path parameters
-
projectId
string Required The project's unique document ID.
Query parameters
-
notify
string If set to
0
orfalse
, then all notifications associated with this operation will be disabled. This includes push notifications, emails and asynchronous UI updates. Useful for bulk operations.
Body
Required
-
permission
string Required Determines the person's permissions within the project. A
member
can do basic work on the project, amanager
has additional control over the project, like managing basic settings, project duration, people rates, etc. and anadmin
has full control over the project. Theobserver
can view everything, but not change anything.Values are
member
,manager
,admin
, orobserver
. -
role
string Reference to an org role, i.e.
org.roles[]._id
-
roleTitle
string The title of the role. E.g. Director of Sales
-
email
string(email) Required The person's email in the project.
-
isProjectManager
boolean If true, this person can act as a project manager. A project manager can assign resources to roles, approve leave requests, etc.
Default value is
false
. -
rate
number(float) The person's charge rate.
Minimum value is
0
. -
rateTime
string The person's charge rate time.
Values are
oneTime
,recurring
,hourly
,daily
,weekly
,monthly
, oryearly
.
curl \
--request POST 'https://open.api.missionx.ai/v1/projects/{projectId}/people' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"permission":"member","role":"string","roleTitle":"string","email":"hello@example.com","isProjectManager":false,"rate":42.0,"rateTime":"oneTime"}'
{
"permission": "member",
"role": "string",
"roleTitle": "string",
"email": "hello@example.com",
"isProjectManager": false,
"rate": 42.0,
"rateTime": "oneTime"
}
{
"_id": "string",
"permission": "member",
"person": "string",
"role": "string",
"roleTitle": "string",
"email": "hello@example.com",
"isProjectManager": false,
"rate": 42.0,
"rateTime": "oneTime",
"invitePendingSince": 42.0,
"praise": 42.0
}
{
"message": "string",
"code": "string",
"data": {}
}
{
"message": "string",
"code": "string",
"data": {}
}