Path parameters
-
personId
string Required The organization's person unique document ID, i.e.
org.people[].person
.
Query parameters
-
withArchived
string If set to true, the response will include people removed from the organization.
GET
/orgs/people/{personId}
curl \
--request GET 'https://open.api.missionx.ai/v1/orgs/people/{personId}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"_id": "string",
"permission": "member",
"startDate": "2025-05-04T09:42:00Z",
"endDate": "2025-05-04T09:42:00Z",
"archived": true,
"archivedAt": "string",
"person": "string",
"role": "string",
"roleTitle": "string",
"email": "hello@example.com",
"departments": [
"string"
],
"office": "string",
"invitePendingSince": 42.0,
"canCreateProjects": false,
"canApproveRoles": false,
"canApproveLeaves": false,
"customProperties": [
{
"name": "string",
"canView": "member",
"description": "string"
}
]
}
Response examples (400)
{
"message": "string",
"code": "string",
"data": {}
}
Response examples (500)
{
"message": "string",
"code": "string",
"data": {}
}