I am running the following command to rename a folder:
curl https://api.box.com/2.0/folders/FOLDER_ID -H "Authorization: Bearer MY_DEVELOPER_TOKEN" -d '{"name":"New_Folder_Name"}' -X PUTBut get the following error:
{"type":"error","status":400,"code":"bad_request","context_info":{"errors":[{"reason":"invalid_parameter","name":"entity-body","message":"Invalid value ''{name:New_Folder_Name}''. Entity body should be a correctly nested resource attribute name\/value pair"}]},"help_url":"http:\/\/developers.box.com\/docs\/#errors","message":"Bad Request","request_id":"rw8mnefrudnnzoqn"}
What am I missing?