标签: php box boxapiv2
我正在使用BoxPHPAPI,我想知道在创建文件夹时是否有办法获取文件夹ID?
https://github.com/golchha21/BoxPHPAPI
答案 0 :(得分:0)
create_folder函数返回Box文件夹创建调用的结果,其中包含id参数。 https://developers.box.com/docs/#folders-create-a-new-folder
create_folder
id
$folder = $box->create_folder('FOLDER NAME', 'PARENT FOLDER ID'); print $folder->id;