Update Folder - Implan-Group/api GitHub Wiki
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.
{ "id": "591", "title": "Example Folder - Nested", "created": "2025-08-12T14:39:54", "ownerId": 1378, "parentId": null }
PUT /api/v1/impact/folder/591
{ "id" : 591, "Title": "Updated Folder Title", "ParentId": 590 }
{ "id": "591", "title": "Updated Folder Title", "created": "2025-08-12T14:39:54", "ownerId": 1378, "parentId": 590 }