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

60 lines
893 B
Plaintext

{
summary: '',
description: '',
tags: [
'notes',
],
requireCredential: false,
req: {
type: 'object',
properties: {
channelId: {
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',
},
sinceDate: {
type: 'integer',
},
untilDate: {
type: 'integer',
},
},
required: [
'channelId',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Note',
$ref: 'misskey://Note',
},
},
errors: {
'4d0eeeba-a02c-4c3c-9966-ef60d38d2e7f': {
id: '4d0eeeba-a02c-4c3c-9966-ef60d38d2e7f',
code: 'NO_SUCH_CHANNEL',
description: '',
},
},
}