jointrashposs/content/ja/.docs-legacy/api/endpoints/following/create.json5

56 lines
1.4 KiB
Plaintext
Raw Normal View History

2023-07-08 10:36:02 +02:00
{
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: {
'fcd2eef9-a9b2-4c4f-8624-038099e90aa5': {
id: 'fcd2eef9-a9b2-4c4f-8624-038099e90aa5',
code: 'NO_SUCH_USER',
description: 'ユーザーが存在しません。',
},
'26fbe7bb-a331-4857-af17-205b426669a9': {
id: '26fbe7bb-a331-4857-af17-205b426669a9',
code: 'FOLLOWEE_IS_YOURSELF',
description: '自分をフォローしようとしました。。',
},
'35387507-38c7-4cb9-9197-300b93783fa0': {
id: '35387507-38c7-4cb9-9197-300b93783fa0',
code: 'ALREADY_FOLLOWING',
description: 'すでにフォローしています。',
},
'4e2206ec-aa4f-4960-b865-6c23ac38e2d9': {
id: '4e2206ec-aa4f-4960-b865-6c23ac38e2d9',
code: 'BLOCKING',
description: 'ユーザーをブロックしています。',
},
'c4ab57cc-4e41-45e9-bfd9-584f61e35ce0': {
id: 'c4ab57cc-4e41-45e9-bfd9-584f61e35ce0',
code: 'BLOCKED',
description: 'ユーザーにブロックされています。',
},
},
}