Update Folder - Implan-Group/api GitHub Wiki

Update Folder


PUT /api/v1/impact/folder/{folderId}

The endpoint updates an existing Project Folder.

Parameter Spec Type Details
folderId route int The folder's identifier.
body body json A Folder Object.

Warning

You must include both the folderId in the route as well as the id property in the body.


🧾Example

🏛️ Original

{
    "id": "591",
    "title": "Example Folder - Nested",
    "created": "2025-08-12T14:39:54",
    "ownerId": 1378,
    "parentId": null
}

📤 Request

PUT /api/v1/impact/folder/591

{
    "id" : 591,
    "Title": "Updated Folder Title",
    "ParentId": 590
}

📥 Response

{
    "id": "591",
    "title": "Updated Folder Title",
    "created": "2025-08-12T14:39:54",
    "ownerId": 1378,
    "parentId": 590
}
⚠️ **GitHub.com Fallback** ⚠️