mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 01:39:07 +01:00
30 lines
634 B
Plaintext
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: 'ユーザーが存在しません。',
|
|
},
|
|
},
|
|
}
|