mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 09:49:06 +01:00
29 lines
587 B
Plaintext
29 lines
587 B
Plaintext
{
|
|
summary: 'クリップを削除します。',
|
|
description: 'ログイン中のユーザーが作成したクリップを削除します。',
|
|
tags: [
|
|
'clips',
|
|
],
|
|
requireCredential: true,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
clipId: {
|
|
type: 'string',
|
|
format: 'misskey:id',
|
|
description: 'クリップのid。',
|
|
},
|
|
},
|
|
required: [
|
|
'clipId',
|
|
],
|
|
},
|
|
res: {},
|
|
errors: {
|
|
'70ca08ba-6865-4630-b6fb-8494759aa754': {
|
|
id: '70ca08ba-6865-4630-b6fb-8494759aa754',
|
|
code: 'NO_SUCH_CLIP',
|
|
description: 'クリップが存在しません。',
|
|
},
|
|
},
|
|
} |