mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
46 lines
1.2 KiB
Plaintext
46 lines
1.2 KiB
Plaintext
{
|
|
summary: '他のユーザーからのフォローを無効にします(フォロワーを解除します)。',
|
|
description: '他のユーザーから、ログイン中のユーザーへのフォローを無効にします(フォロワーを解除します)。',
|
|
tags: [
|
|
'following',
|
|
],
|
|
requireCredential: true,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
userId: {
|
|
type: 'string',
|
|
format: 'misskey:id',
|
|
description: '自身をフォローしているユーザーのid。',
|
|
},
|
|
},
|
|
required: [
|
|
'userId',
|
|
],
|
|
},
|
|
res: {
|
|
type: 'object',
|
|
optional: false,
|
|
nullable: false,
|
|
ref: 'UserLite',
|
|
$ref: 'misskey://UserLite',
|
|
},
|
|
errors: {
|
|
'5b12c78d-2b28-4dca-99d2-f56139b42ff8': {
|
|
id: '5b12c78d-2b28-4dca-99d2-f56139b42ff8',
|
|
code: 'NO_SUCH_USER',
|
|
description: 'ユーザーが存在しません。',
|
|
},
|
|
'07dc03b9-03da-422d-885b-438313707662': {
|
|
id: '07dc03b9-03da-422d-885b-438313707662',
|
|
code: 'FOLLOWER_IS_YOURSELF',
|
|
description: '自分をフォロワー解除しようとしました。',
|
|
},
|
|
'5dbf82f5-c92b-40b1-87d1-6c8c0741fd09': {
|
|
id: '5dbf82f5-c92b-40b1-87d1-6c8c0741fd09',
|
|
code: 'NOT_FOLLOWING',
|
|
description: 'ユーザーにフォローされていません。',
|
|
},
|
|
},
|
|
}
|