cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#BOX_MOVE_FOLDER' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "BOX_MOVE_FOLDER", "parameters": { "folderId": "<string>", "folderName": "<string>", "folderParent": {} } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Folder ID : The unique identifier that represents a folder. (example: "0")
Name : The name for the new folder. (example: "New Folder")
Parent Folder : Parent folder (https://developer.box.com/reference/post-folders#param-parent) to create the new folder within. (example: "{ "id": "123456" }")
Success
Was this page helpful?