mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 01:39:07 +01:00
29 lines
560 B
Plaintext
29 lines
560 B
Plaintext
|
{
|
|||
|
summary: 'ノートのウォッチを解除します。',
|
|||
|
description: 'ノートのウォッチを解除します。',
|
|||
|
tags: [
|
|||
|
'notes',
|
|||
|
],
|
|||
|
requireCredential: true,
|
|||
|
req: {
|
|||
|
type: 'object',
|
|||
|
properties: {
|
|||
|
noteId: {
|
|||
|
type: 'string',
|
|||
|
format: 'misskey:id',
|
|||
|
description: 'ノートのid。',
|
|||
|
},
|
|||
|
},
|
|||
|
required: [
|
|||
|
'noteId',
|
|||
|
],
|
|||
|
},
|
|||
|
res: {},
|
|||
|
errors: {
|
|||
|
'09b3695c-f72c-4731-a428-7cff825fc82e': {
|
|||
|
id: '09b3695c-f72c-4731-a428-7cff825fc82e',
|
|||
|
code: 'NO_SUCH_NOTE',
|
|||
|
description: 'ノートが存在しません。',
|
|||
|
},
|
|||
|
},
|
|||
|
}
|