mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
41 lines
835 B
Plaintext
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: 'ファイルが存在しません。',
|
|
},
|
|
},
|
|
}
|