Docs
Update Folder Association
PUT /drives/{eventId}/folders/{folderId}/associations/{associationId}
PUT
/drives/{eventId}/folders/{folderId}/associations/{associationId}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 permissions and reviewer status of an existing folder association.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| driveId | Guid | Required | The event ID. |
| folderId | Guid | Required | The folder ID. |
| associationId | Guid | Required | The association ID to update. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| permissions | array | Required | Updated permissions (e.g., `["File.Read"]`, `["File.*"]`). |
| isReviewer | bool | Required | Whether this entity is a reviewer. |
Response
200 OK — No response body.
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Folder or association not found. |