料金体系 
API料金

無料で試す

ダーク

ライト

USER DICTIONARY
専門用一括語削除
全ての専門用語を削除します。
本機能はT-4OOエンジン、リアルタイム翻訳エンジン、T-3MTエンジンがご利用いただけます。
Endpoint
Request details
DELETE
https://translate.rozetta-api.io/api/v1/dictionary/dictionary-all
Header
Header
Description
Content-Type
application/json
accessKey, nonce, signature
「認証方法」をご参照ください。
Request例
curl -H "nonce: Your Nonce" -H "accessKey: Your Access Key" -H "signature: Your Signature" -H "Content-Type: application/json" -X DELETE https://translate.rozetta-api.io/api/v1/dictionary/dictionary-all
Response
Key
Description
status
成功した場合、「success」を返します。失敗した場合、「failure」を返します。
Limitation
制限
リアルタイム翻訳エンジンの場合、一つの文で、専門用語は3つ以内で指定してください。 例: "猫"→"Kitty" "犬"→"Marutaro" "ウサギ"→"Peter" "クマ"→"Teddy" 一回のリクエストで下記の原文を翻訳すると ["これはです。それはです。ウサギクマも動物です。", "ウサギクマも可愛いです。"] 以下の結果になります。 ["This is Kitty. It is Marutaro. Both Peter and bears are animals.", "Both Peter and Teddy are cute."] ※一つ目の文は「猫」、「犬」、「ウサギ」3つの専門用語は既に適用されているため、「クマ」は適用されません。

api/v1/dictionary/dictionary-all
全ての専門用語を削除します。
JavaScript
const superagent = require('superagent');
const crypto = require('crypto');

const serverConfig = {
    protocol: 'https:',
    hostname: 'translate.rozetta-api.io',
    port: 443
};

const authConfig = {
    accessKey: 'ACCESS_KEY',
    secretKey: 'SECRET_KEY',
    nonce: Date.now().toString()
};

const sendRequest = (serverConfig, authConfig) => {
    const url = '/api/v1/dictionary/dictionary-all';
    const signature = authUtils.generateSignature(
     url,
     authConfig.secretKey,
     authConfig.nonce
   );

    const headers = {
        accessKey: authConfig.accessKey,
        signature,
        nonce: authConfig.nonce,
    };
    return superagent.delete(`${serverConfig.protocol}//${serverConfig.hostname}${url}`)
        .set(headers)
        .then((res) => {
            return res.body;
        }).catch((err) => {
            return err.message;
        });
};

const main = async () => {
    try {
        const response = await sendRequest(serverConfig, authConfig);
        console.log('Server response:');
        console.log(response);
    } catch (error) {
        console.error(error);
    }
};

main();
認証については、「認証方法」をご参照ください。
各言語の完全版のサンプルコードをここで参照できます。
©️ 2019 Rozetta API  ・  Powered by Rozetta

株式会社ロゼッタ

^