Query parameters
-
expand
array[string] One or more references to expand. Any of
client
,planItems
,departments
Values are
client
,planItems
, ordepartments
. -
project
array[string] One or more project IDs to filter the results by. This is the
_id
value of the project. -
projectStatus
array[string] One or more project statuses to filter the results by.
-
program
array[string] One or more project programs to filter the results by.
-
updatedAt
string A date query to filter the results by the last
updatedAt
field. Format is[operation] [date]
, e.g.updatedAt=gt 2025-02-24T00:00:00.000Z
. Acceptable operations arelt
= lower than,lte
= lower than or equal,gt
= greater than,gte
= greater than or equal. The date is in ISOString. -
startDate
string A start date query to filter the results by. Format is
[operation] [date]
, e.g.startDate=gt 2025-02-24T00:00:00.000Z
. Acceptable operations arelt
= lower than,lte
= lower than or equal,gt
= greater than,gte
= greater than or equal. The date is in ISOString. -
endDate
string An end date query to filter the results by. Format is
[operation] [date]
, e.g.endDate=gt 2025-02-24T00:00:00.000Z
. Acceptable operations arelt
= lower than,lte
= lower than or equal,gt
= greater than,gte
= greater than or equal. The date is in ISOString. -
select
array[string] One or more properties to be included in the response, instead of the full payload. E.g.
select=endDate,projectStatus
curl \
--request GET 'https://open.api.missionx.ai/v1/projects' \
--header "Authorization: Bearer $ACCESS_TOKEN"
{
"value": [
{
"_id": "string",
"createdBy": "string",
"createdAt": "2025-05-04T09:42:00Z",
"updatedAt": "2025-05-04T09:42:00Z",
"org": "string",
"startDate": "2025-05-04T09:42:00Z",
"endDate": "2025-05-04T09:42:00Z",
"client": "string",
"customId": "string",
"title": "string",
"description": "string",
"projectCode": "string",
"projectStatus": "open",
"departments": [
"string"
],
"offices": [
"string"
],
"revenueType": "milestones",
"budget": 42.0,
"timeTrackingEnabled": false,
"currency": "string",
"inviteDomains": [
"string"
],
"projectType": "smart-simple",
"usageStorage": 0,
"planItems": [
"string"
],
"customProperties": [
{
"name": "string",
"canView": "member",
"description": "string"
}
]
}
]
}