Query parameters
-
select
array[string] One or more properties to be included in the response, instead of the full payload. E.g.
select=clients,departments
GET
/orgs/me
curl \
--request GET 'https://open.api.missionx.ai/v1/orgs/me' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"_id": "string",
"createdBy": "string",
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z",
"title": "string",
"departments": [
{
"_id": "string",
"customId": "string",
"title": "string",
"description": "string"
}
],
"offices": [
{
"_id": "string",
"customId": "string",
"title": "string",
"description": "string",
"address": "string",
"country": "string"
}
],
"currency": "EUR",
"clients": [
{
"_id": "string",
"customId": "string",
"title": "string",
"emailDomains": [
"string"
],
"departments": [
"string"
]
}
],
"roles": [
{
"_id": "string",
"customId": "string",
"title": "string",
"cost": 42.0,
"costRateTime": "Monthly",
"billRate": 42.0,
"billRateTime": "Hourly"
}
],
"people": [
{
"_id": "string",
"permission": "member",
"startDate": "2025-05-04T09:42:00Z",
"endDate": "2025-05-04T09:42:00Z",
"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"
}
]
}
]
}