Docs
Update Folder
PUT /drives/{eventId}/folders/{folderId}
PUT
/drives/{eventId}/folders/{folderId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Updates the metadata of an existing folder. Use the path field to move the folder to a different location. Requires File.* or File.Edit permission on the folder.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| driveId | Guid | Required | The event ID. |
| folderId | Guid | Required | The folder ID. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | Updated display name. |
| description | string | Optional | Updated description. |
| path | string | Required | Updated parent path. Use this to move the folder. |
Response
200 OK — No response body.
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token, or insufficient permissions. |
NOT_FOUND | 404 | Folder not found. |
BAD_REQUEST | 400 | Empty name or invalid path. |