jointrashposs/content/ja-JP/.docs-legacy/api/endpoints/admin/reset-password.json5
kakkokari-gtyih a8dca2c347 migrate docs
2023-07-11 00:44:03 +09:00

38 lines
488 B
Plaintext

{
summary: '',
description: '',
tags: [
'admin',
],
requireCredential: true,
req: {
type: 'object',
properties: {
userId: {
type: 'string',
format: 'misskey:id',
},
},
required: [
'userId',
],
},
res: {
type: 'object',
optional: false,
nullable: false,
properties: {
password: {
type: 'string',
optional: false,
nullable: false,
minLength: 8,
maxLength: 8,
},
},
required: [
'password',
],
},
errors: {},
}