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

39 lines
1.0 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
summary: 'ノートを翻訳します。',
description: 'ノートを翻訳します。',
tags: [
'notes',
],
requireCredential: false,
req: {
type: 'object',
properties: {
noteId: {
type: 'string',
format: 'misskey:id',
description: 'ートのid。',
},
targetLang: {
type: 'string',
description: '翻訳先の言語。値がDeepL APIのv2/translateエンドポイントのtarget_langパラメータに渡されます。ただし、ハイフン以降は無視されます。例JAを指定すると日本語、DEを指定するとドイツ語に翻訳します。EN-GBイギリス英語はEN地域を限定しない「英語」として扱われます。',
},
},
required: [
'noteId',
'targetLang',
],
},
res: {
type: 'object',
optional: false,
nullable: false,
},
errors: {
'bea9b03f-36e0-49c5-a4db-627a029f8971': {
id: 'bea9b03f-36e0-49c5-a4db-627a029f8971',
code: 'NO_SUCH_NOTE',
description: 'ノートが存在しません。',
},
},
}