jointrashposs/content/ja/.docs-legacy/api/endpoints/app/create.json5
2023-07-11 23:48:17 +09:00

44 lines
572 B
Plaintext

{
summary: '',
description: '',
tags: [
'app',
],
requireCredential: false,
req: {
type: 'object',
properties: {
name: {
type: 'string',
},
description: {
type: 'string',
},
permission: {
type: 'array',
uniqueItems: true,
items: {
type: 'string',
},
},
callbackUrl: {
type: 'string',
nullable: true,
},
},
required: [
'name',
'description',
'permission',
],
},
res: {
type: 'object',
optional: false,
nullable: false,
ref: 'App',
$ref: 'misskey://App',
},
errors: {},
}