GET: /tm/context/<context_uuid>/phrase/<phrase_key>
Request params
Parameters | 説明 |
---|---|
secret_key | |
public_key |
Response params
Parameters | 説明 |
---|---|
source_text | text given by user to be saved in a specific context |
uuid | A unique UUID for this phrase, generated by TM |
context | The context that the phrase related to. |
target | For each language - array of translations. |
remarks | remarks given by user in phrase creation |
flags | null (currently not in use) |
source_language | slug name of phrase's source language , e.g english see Language Codes |
phrase_key | phrase key generated by TM or may be given by user |
Request Example
curl --request GET "https://www.onehourtranslation.com/api/2/tm/context/c-3d2f0d91bbdd/phrase/ab8f37d89b1154ba18c78a7e4b8eef2acdfec1eb?secret_key=<secret_key>&public_key=<public_key>"
Response Example
{
"status":
{
"code":0,
"msg":"ok"
},
"results":
{
"source_text":"test phrase",
"uuid":"p-b66244a0d38f",
"context":"c-3d2f0d91bbdd",
"target":
{
"dutch":["test-zin"],
"spanish":["frase de prueba"]
},
"remarks":"",
"flags":null,
"source_language":"english",
"invalid":[],
"phrase_key":"ab8f37d89b1154ba18c78a7e4b8eef2acdfec1eb"
},
"errors":[]
}