mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
40 lines
906 B
Plaintext
40 lines
906 B
Plaintext
|
{
|
|||
|
summary: 'ノートをクリップから削除します。',
|
|||
|
description: 'ノートをクリップから削除します。ノート自身は削除されません。',
|
|||
|
tags: [
|
|||
|
'account',
|
|||
|
],
|
|||
|
requireCredential: true,
|
|||
|
req: {
|
|||
|
type: 'object',
|
|||
|
properties: {
|
|||
|
clipId: {
|
|||
|
type: 'string',
|
|||
|
format: 'misskey:id',
|
|||
|
description: 'クリップのid。',
|
|||
|
},
|
|||
|
noteId: {
|
|||
|
type: 'string',
|
|||
|
format: 'misskey:id',
|
|||
|
description: 'ノートのid。',
|
|||
|
},
|
|||
|
},
|
|||
|
required: [
|
|||
|
'clipId',
|
|||
|
'noteId',
|
|||
|
],
|
|||
|
},
|
|||
|
res: {},
|
|||
|
errors: {
|
|||
|
'b80525c6-97f7-49d7-a42d-ebccd49cfd52': {
|
|||
|
id: 'b80525c6-97f7-49d7-a42d-ebccd49cfd52',
|
|||
|
code: 'NO_SUCH_CLIP',
|
|||
|
description: 'クリップが存在しません。',
|
|||
|
},
|
|||
|
'aff017de-190e-434b-893e-33a9ff5049d8': {
|
|||
|
id: 'aff017de-190e-434b-893e-33a9ff5049d8',
|
|||
|
code: 'NO_SUCH_NOTE',
|
|||
|
description: 'ノートが存在しません。',
|
|||
|
},
|
|||
|
},
|
|||
|
}
|