使用Box API创建文件夹时的文件夹ID

时间:2014-07-21 19:51:32

标签: php box boxapiv2

我正在使用BoxPHPAPI,我想知道在创建文件夹时是否有办法获取文件夹ID?

https://github.com/golchha21/BoxPHPAPI

1 个答案:

答案 0 :(得分:0)

create_folder函数返回Box文件夹创建调用的结果,其中包含id参数。 https://developers.box.com/docs/#folders-create-a-new-folder

$folder = $box->create_folder('FOLDER NAME', 'PARENT FOLDER ID');
print $folder->id;