Header name | Description |
---|---|
Content-Type required |
application/json |
X-API-KEY required |
YOUR_API_KEY |
Param name | Description |
---|---|
title optional |
Title Validations:
|
description optional |
Description Validations:
|
// Succesful request PUT /api/v2/drop_folders/41 { "title": "Modified Sample Drop Folder", "description": "Modified Description" } 200 { "drop_folder": { "title": "Modified Sample Drop Folder", "description": "Modified Description", "id": 41, "owner": "admin-user-136@example.com", "created_at": "2023-11-27T09:43:06.475Z", "updated_at": "2023-11-27T09:43:06.578Z", "loader_id": 40, "original_title": "Sample Drop Folder", "is_public": false } }
// With invalid parameters PUT /api/v2/drop_folders/42 { "title": "" } 400 { "error": "Title can't be blank" }
Code | Description |
---|---|
401 | Unauthorized |
404 | Not found |
500 | Internal Server Error |
422 | Missing parameters |