新しいBoxサポートサイトへようこそ。 変更点の詳細はこちらをご確認ください .

API to delete AND Transfer files

回答済み
新規投稿

コメント

1件のコメント

  • bibek_k

    Hi,

     

    You have to use this API: https://developer.box.com/v2.0/reference#move-folder-into-another-users-folder

     

    curl https://api.box.com/2.0/users/USER_ID/folders/FOLDER_ID \
    -H "Authorization: Bearer ACCESS_TOKEN" \
    -d '{"owned_by": {"id": "USER_ID"}}' \
    -X PUT

    Basically FOLDER_ID must be 0. Only supports rootfolder. This will move contents to another user ID, you can have user notified as well  if you want. 

    And after that you can use delete API with "force" option.

    force  boolean

    Whether the user should be deleted even if this user still own files

     

    Hope this helps.

     

    thanks, 

    Bibek

    0
    コメントアクション パーマリンク

サインインしてコメントを残してください。