jointrashposs/content/ja/.docs-legacy/api/endpoints/i/pages.json5
2023-07-11 23:48:17 +09:00

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: {},
}