mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 09:49:06 +01:00
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
{
|
|
summary: 'ユーザーのブロックを解除します。',
|
|
description: 'ユーザーのブロックを解除します。',
|
|
tags: [
|
|
'account',
|
|
],
|
|
requireCredential: true,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
userId: {
|
|
type: 'string',
|
|
format: 'misskey:id',
|
|
description: 'ブロックを解除するユーザーのid。',
|
|
},
|
|
},
|
|
required: [
|
|
'userId',
|
|
],
|
|
},
|
|
res: {
|
|
type: 'object',
|
|
optional: false,
|
|
nullable: false,
|
|
ref: 'UserDetailedNotMe',
|
|
$ref: 'misskey://UserDetailedNotMe',
|
|
},
|
|
errors: {
|
|
'8621d8bf-c358-4303-a066-5ea78610eb3f': {
|
|
id: '8621d8bf-c358-4303-a066-5ea78610eb3f',
|
|
code: 'NO_SUCH_USER',
|
|
description: 'ユーザーが存在しません。',
|
|
},
|
|
'06f6fac6-524b-473c-a354-e97a40ae6eac': {
|
|
id: '06f6fac6-524b-473c-a354-e97a40ae6eac',
|
|
code: 'BLOCKEE_IS_YOURSELF',
|
|
description: '自分のブロックを解除しようとしました。',
|
|
},
|
|
'291b2efa-60c6-45c0-9f6a-045c8f9b02cd': {
|
|
id: '291b2efa-60c6-45c0-9f6a-045c8f9b02cd',
|
|
code: 'NOT_BLOCKING',
|
|
description: 'ブロックしていないユーザーです。',
|
|
},
|
|
},
|
|
}
|