Update Project - Implan-Group/api GitHub Wiki

Update Project

Warning

You cannot change a Project's Aggregation Schemes nor HouseholdSets as that could potentially invalidate existing Events and/or Groups.


PUT /api/v1/impact/project/{projectId}

This endpoint modifies an existing Project.

Parameter Spec Type Details
projectId route guid The Project's Id.
body body json The new Project Object.

🧾Example

📤 Request

PUT /api/v1/impact/project/496256c2-a089-4d42-a1a1-cafee3a43216

{
    "Title": "New Title",
    "IsMrio": true
}

📥 Response

{
    "id": "496256c2-a089-4d42-a1a1-cafe73a43216",
    "title": "New Title",
    "aggregationSchemeId": 14,
    "householdSetId": 1,
    "isMrio": true,
    "folderId": null,
    "lastImpactRunId": null
}
⚠️ **GitHub.com Fallback** ⚠️