jointrashposs/content/ja/.docs-legacy/api/endpoints/drive/folders/delete.json5

35 lines
872 B
Plaintext
Raw Normal View History

2023-07-08 10:36:02 +02:00
{
summary: 'フォルダーを削除します。',
description: 'ログイン中のユーザのドライブにあるフォルダーを削除します。中身が空のフォルダーだけが削除できます。',
tags: [
'drive',
],
requireCredential: true,
req: {
type: 'object',
properties: {
folderId: {
type: 'string',
format: 'misskey:id',
description: 'フォルダーのid。',
},
},
required: [
'folderId',
],
},
res: {},
errors: {
'1069098f-c281-440f-b085-f9932edbe091': {
id: '1069098f-c281-440f-b085-f9932edbe091',
code: 'NO_SUCH_FOLDER',
description: 'フォルダーが存在しません。',
},
'b0fc8a17-963c-405d-bfbc-859a487295e1': {
id: 'b0fc8a17-963c-405d-bfbc-859a487295e1',
code: 'HAS_CHILD_FILES_OR_FOLDERS',
description: 'フォルダーが空ではありません。',
},
},
}