mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
27 lines
522 B
Plaintext
27 lines
522 B
Plaintext
{
|
|
summary: 'ログイン中のユーザーが作成したクリップの一覧を取得します。',
|
|
description: 'ログイン中のユーザーが作成したクリップの一覧を取得します。',
|
|
tags: [
|
|
'clips',
|
|
],
|
|
requireCredential: true,
|
|
req: {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
},
|
|
res: {
|
|
type: 'array',
|
|
optional: false,
|
|
nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false,
|
|
nullable: false,
|
|
ref: 'Clip',
|
|
$ref: 'misskey://Clip',
|
|
},
|
|
},
|
|
errors: {},
|
|
}
|