mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
36 lines
688 B
Plaintext
36 lines
688 B
Plaintext
{
|
|
summary: 'クリップを取得します。',
|
|
description: 'クリップを取得します。',
|
|
tags: [
|
|
'clips',
|
|
],
|
|
requireCredential: false,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
clipId: {
|
|
type: 'string',
|
|
format: 'misskey:id',
|
|
description: 'クリップのid。',
|
|
},
|
|
},
|
|
required: [
|
|
'clipId',
|
|
],
|
|
},
|
|
res: {
|
|
type: 'object',
|
|
optional: false,
|
|
nullable: false,
|
|
ref: 'Clip',
|
|
$ref: 'misskey://Clip',
|
|
},
|
|
errors: {
|
|
'c3c5fe33-d62c-44d2-9ea5-d997703f5c20': {
|
|
id: 'c3c5fe33-d62c-44d2-9ea5-d997703f5c20',
|
|
code: 'NO_SUCH_CLIP',
|
|
description: 'クリップが存在しないか、アクセスが許可されていません。',
|
|
},
|
|
},
|
|
}
|