List Project Types
Lists the workspace's project types. Use each type's id with List Project Task Stages.
Authentication: X-API-KEY header (see Authentication).
Request
curl -X GET https://api.withmoxie.com/public/action/projectTypes/list \
-H "X-API-KEY: your_api_key_here"
Response
Returns project types with their project fields, task fields, and task stages.
[
{
"id": "PROJECT_TYPE_ID",
"name": "Default project",
"isDefaultProjectType": true,
"projectFields": [],
"deliverableFields": [],
"statusList": [
{
"id": "STATUS_ID",
"label": "In progress",
"complete": false,
"clientApproval": false
}
]
}
]