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

30 lines
634 B
Plaintext

{
summary: 'フォローを拒否します。',
description: 'フォローリクエストを送ったユーザーからのフォローを拒否します。',
tags: [
'following',
],
requireCredential: true,
req: {
type: 'object',
properties: {
userId: {
type: 'string',
format: 'misskey:id',
description: 'フォローを拒否するユーザーのid。',
},
},
required: [
'userId',
],
},
res: {},
errors: {
'abc2ffa6-25b2-4380-ba99-321ff3a94555': {
id: 'abc2ffa6-25b2-4380-ba99-321ff3a94555',
code: 'NO_SUCH_USER',
description: 'ユーザーが存在しません。',
},
},
}