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

42 lines
581 B
Plaintext

{
summary: '',
description: '',
tags: [
'channels',
],
requireCredential: true,
req: {
type: 'object',
properties: {
sinceId: {
type: 'string',
format: 'misskey:id',
},
untilId: {
type: 'string',
format: 'misskey:id',
},
limit: {
type: 'integer',
minimum: 1,
maximum: 100,
default: 5,
},
},
required: [],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Channel',
$ref: 'misskey://Channel',
},
},
errors: {},
}