jointrashposs/content/ja/.docs-legacy/api/endpoints/notes/thread-muting/create.json5

29 lines
621 B
Plaintext
Raw Normal View History

2023-07-08 10:36:02 +02:00
{
summary: 'スレッドをミュートします。',
description: 'スレッドをミュートします。',
tags: [
'notes',
],
requireCredential: true,
req: {
type: 'object',
properties: {
noteId: {
type: 'string',
format: 'misskey:id',
description: 'ートのid。このートを含むスレッド全体がミュートされます。',
},
},
required: [
'noteId',
],
},
res: {},
errors: {
'5ff67ada-ed3b-2e71-8e87-a1a421e177d2': {
id: '5ff67ada-ed3b-2e71-8e87-a1a421e177d2',
code: 'NO_SUCH_NOTE',
description: 'ノートが存在しません。',
},
},
}