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

53 lines
1006 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: [
'notes',
],
requireCredential: false,
req: {
type: 'object',
properties: {
noteId: {
type: 'string',
format: 'misskey:id',
description: 'ートのid。',
},
limit: {
type: 'integer',
minimum: 1,
maximum: 100,
default: 10,
description: '取得するノートの最大数。',
},
offset: {
type: 'integer',
default: 0,
description: '結果の先頭offset個をスキップします。',
},
},
required: [
'noteId',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Note',
$ref: 'misskey://Note',
},
},
errors: {
'e1035875-9551-45ec-afa8-1ded1fcb53c8': {
id: 'e1035875-9551-45ec-afa8-1ded1fcb53c8',
code: 'NO_SUCH_NOTE',
description: 'ノートが存在しません。',
},
},
}