jointrashposs/content/ja/.docs-legacy/api/endpoints/drive/files/attached-notes.json5
2023-07-11 23:48:17 +09:00

41 lines
835 B
Plaintext

{
summary: 'ファイルが添付されているノートを取得します。',
description: 'ログイン中のユーザのドライブにあるファイルが添付されているノートを取得します。',
tags: [
'drive',
],
requireCredential: true,
req: {
type: 'object',
properties: {
fileId: {
type: 'string',
format: 'misskey:id',
description: 'ファイルのid。',
},
},
required: [
'fileId',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Note',
$ref: 'misskey://Note',
},
},
errors: {
'c118ece3-2e4b-4296-99d1-51756e32d232': {
id: 'c118ece3-2e4b-4296-99d1-51756e32d232',
code: 'NO_SUCH_FILE',
description: 'ファイルが存在しません。',
},
},
}