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

29 lines
647 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: {
'bddd57ac-ceb3-b29d-4334-86ea5fae481a': {
id: 'bddd57ac-ceb3-b29d-4334-86ea5fae481a',
code: 'NO_SUCH_NOTE',
description: 'ノートが存在しません。',
},
},
}