mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 01:39:07 +01:00
60 lines
893 B
Plaintext
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: '',
|
|
},
|
|
},
|
|
}
|