Thank you for creating this great class. I am trying to understand how the format of the associative array would be when performing a POST on a copy of folder action on the box.com V2 API. I am having trouble getting it to be in the correct format.
Here is the API action reference: http://developers.box.com/docs/#folders-copy-a-folder.
The box API document specifies up to three attributes for the call:
1. parent - Object representing the new location of the folder.
2. id - The ID of the destination folder.
3. name - An optional new name for the folder.
Here is a curl example:
curl https://api.box.com/2.0/folders/FOLDER_ID/copy \
-H "Authorization: Bearer ACCESS_TOKEN" \
-d '{"parent": {"id" : DESTINATION_FOLDER_ID}}' \
-X POST