No description available.
Input
Encoding
application/jsoncacheOnly
boolean
Optional
No description available.
targetLang
stringlanguage
Required
A BCP-47 language tag (e.g., en, pt-BR).
uris
array
Required
No description available.
maxLength: 50 itemsminLength: 1 itemsOutput
Encoding
application/jsonfailures
array
Required
No description available.
translations
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"uris",
"targetLang"
],
"properties": {
"uris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 50,
"minLength": 1
},
"cacheOnly": {
"type": "boolean"
},
"targetLang": {
"type": "string",
"format": "language"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"translations",
"failures"
],
"properties": {
"failures": {
"type": "array",
"items": {
"type": "object",
"required": [
"uri",
"code"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"code": {
"type": "string"
}
}
}
},
"translations": {
"type": "array",
"items": {
"type": "object",
"required": [
"uri",
"text"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"text": {
"type": "string"
}
}
}
}
}
},
"encoding": "application/json"
}
}