https://api.box.com/2.0/folders , using this api I passed the access token (bearer) unable to create a folder
Json body :
{
"name": "New Folder",
"parent": {
"id": "0"
}
}
Response:
{
"type": "error",
"status": 404,
"code": "not_found",
"context_info": {
"errors": [
{
"reason": "invalid_parameter",
"name": "parent",
"message": "Invalid value '0'. 'parent' with value '0' not found"
}
]
},
"help_url": "http://developers.box.com/docs/#errors",
"message": "Not Found",
"request_id": "lg7h2vhj99q0o3yb"
}