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

29 lines
621 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: 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: 'ノートが存在しません。',
},
},
}