mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 01:39:07 +01:00
45 lines
945 B
Plaintext
45 lines
945 B
Plaintext
{
|
|
summary: 'ページの一覧を取得します。',
|
|
description: 'ログイン中のユーザーが作成したページの一覧を取得します。',
|
|
tags: [
|
|
'account',
|
|
],
|
|
requireCredential: true,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
limit: {
|
|
type: 'integer',
|
|
minimum: 1,
|
|
maximum: 100,
|
|
default: 10,
|
|
description: '取得するページの最大数。',
|
|
},
|
|
sinceId: {
|
|
type: 'string',
|
|
format: 'misskey:id',
|
|
description: '指定すると、idがその値よりも大きい通知を返します。',
|
|
},
|
|
untilId: {
|
|
type: 'string',
|
|
format: 'misskey:id',
|
|
description: '指定すると、idがその値よりも小さい通知を返します。',
|
|
},
|
|
},
|
|
required: [],
|
|
},
|
|
res: {
|
|
type: 'array',
|
|
optional: false,
|
|
nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false,
|
|
nullable: false,
|
|
ref: 'Page',
|
|
$ref: 'misskey://Page',
|
|
},
|
|
},
|
|
errors: {},
|
|
}
|