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

41 lines
749 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
summary: 'ノートを含むクリップを取得します。',
description: 'ノートを含むクリップを取得します。',
tags: [
'clips',
],
requireCredential: false,
req: {
type: 'object',
properties: {
noteId: {
type: 'string',
format: 'misskey:id',
description: 'ートのid。',
},
},
required: [
'noteId',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Clip',
$ref: 'misskey://Clip',
},
},
errors: {
'47db1a1c-b0af-458d-8fb4-986e4efafe1e': {
id: '47db1a1c-b0af-458d-8fb4-986e4efafe1e',
code: 'NO_SUCH_NOTE',
description: 'ノートが存在しません。',
},
},
}