jointrashposs/content/ja/.docs-legacy/api/endpoints/users/clips.json5

48 lines
655 B
Plaintext
Raw Normal View History

2023-07-08 10:36:02 +02:00
{
summary: '',
description: '',
tags: [
'users',
],
requireCredential: false,
req: {
type: 'object',
properties: {
userId: {
type: 'string',
format: 'misskey:id',
},
limit: {
type: 'integer',
minimum: 1,
maximum: 100,
default: 10,
},
sinceId: {
type: 'string',
format: 'misskey:id',
},
untilId: {
type: 'string',
format: 'misskey:id',
},
},
required: [
'userId',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Clip',
$ref: 'misskey://Clip',
},
},
errors: {},
}