jointrashposs/content/ja/.docs-legacy/api/endpoints/notes/search.json5

75 lines
1.7 KiB
Plaintext
Raw Normal View History

2023-07-08 10:36:02 +02:00
{
summary: 'ノートを検索します。',
description: 'ノートを検索します。',
tags: [
'notes',
],
requireCredential: false,
req: {
type: 'object',
properties: {
query: {
type: 'string',
description: '検索クエリ。クエリが本文に含まれるノートを検索します。',
},
sinceId: {
type: 'string',
format: 'misskey:id',
description: '指定すると、idがその値よりも大きいートを返します。',
},
untilId: {
type: 'string',
format: 'misskey:id',
description: '指定すると、idがその値よりも小さいートを返します。',
},
limit: {
type: 'integer',
minimum: 1,
maximum: 100,
default: 10,
description: '取得するノートの最大数。',
},
offset: {
type: 'integer',
default: 0,
description: '検索結果の先頭offset個をスキップします。',
},
host: {
type: 'string',
nullable: true,
description: 'The local host is represented with `null`.',
},
userId: {
type: 'string',
format: 'misskey:id',
nullable: true,
default: null,
description: '指定すると、そのユーザが作成したノートを検索します。',
},
channelId: {
type: 'string',
format: 'misskey:id',
nullable: true,
default: null,
description: '指定すると、そのチャンネルに属するートを検索します。userIdと併せて指定した場合、channelIdは無視されます。',
},
},
required: [
'query',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Note',
$ref: 'misskey://Note',
},
},
errors: {},
}