curl --request GET \
--url https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories \
--header 'Authorization: <api-key>'import requests
url = "https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"categories": [
{
"category": "PREDEFINED",
"types": [
{
"hasSubtypes": true,
"subtypes": [
{
"definition": {
"connection": [
{
"authentication": {
"header": {
"authHeaderName": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
},
"authHeaderValue": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
}
},
"oauth": {
"authUrl": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
},
"clientId": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
},
"clientSecret": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
}
}
},
"baseUrl": {
"url": "<string>",
"helpText": "<string>",
"name": "<string>"
},
"assistiveText": "<string>"
}
],
"engineName": "<string>",
"providerName": "<string>",
"assistiveText": "<string>",
"customization": {
"assistiveText": "<string>",
"customFields": [
{
"key": "<string>",
"type": "TEXT",
"allowedValues": [
"<string>"
],
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true,
"secret": true
}
]
},
"docsUrl": "<string>",
"features": {
"async": true,
"dataRegionPolicy": [
"<string>"
],
"glossaries": true,
"sync": true
},
"learnMoreUrl": "<string>",
"localization": {},
"logoUrl": "<string>"
},
"deleted": true,
"name": "<string>",
"realTime": true,
"subType": "<string>"
}
],
"type": "GOOGLE_V3_TRANSLATE"
}
]
}
]
}List of Language AI engine categories
Per-org catalogue of available MT engine types, grouped by category. An empty PREDEFINED/PREDEFINED_CUSTOMIZABLE (native, fully managed) category means the organization is not entitled to native engines, not that engines are missing/deleted.
curl --request GET \
--url https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories \
--header 'Authorization: <api-key>'import requests
url = "https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.memsource.com/web/api2/v2/memsourceTranslateProfiles/categories")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"categories": [
{
"category": "PREDEFINED",
"types": [
{
"hasSubtypes": true,
"subtypes": [
{
"definition": {
"connection": [
{
"authentication": {
"header": {
"authHeaderName": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
},
"authHeaderValue": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
}
},
"oauth": {
"authUrl": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
},
"clientId": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
},
"clientSecret": {
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true
}
}
},
"baseUrl": {
"url": "<string>",
"helpText": "<string>",
"name": "<string>"
},
"assistiveText": "<string>"
}
],
"engineName": "<string>",
"providerName": "<string>",
"assistiveText": "<string>",
"customization": {
"assistiveText": "<string>",
"customFields": [
{
"key": "<string>",
"type": "TEXT",
"allowedValues": [
"<string>"
],
"defaultValue": "<string>",
"helpText": "<string>",
"hidden": true,
"label": "<string>",
"placeholderText": "<string>",
"required": true,
"secret": true
}
]
},
"docsUrl": "<string>",
"features": {
"async": true,
"dataRegionPolicy": [
"<string>"
],
"glossaries": true,
"sync": true
},
"learnMoreUrl": "<string>",
"localization": {},
"logoUrl": "<string>"
},
"deleted": true,
"name": "<string>",
"realTime": true,
"subType": "<string>"
}
],
"type": "GOOGLE_V3_TRANSLATE"
}
]
}
]
}Authorizations
Get a token from auth/login endpoint and then pass it in the Authorization HTTP header in every subsequent API call. For more information visit our help center.
Response
OK
Per-organization catalogue of available MT engine types, grouped by category. Native (fully managed) engine types - category PREDEFINED and PREDEFINED_CUSTOMIZABLE - are gated by an org-level entitlement; an empty native category is a valid non-defect state for an organization not entitled to native engines, not evidence that engines are missing or were deleted.
Available engine categories and their types for the organization
Show child attributes
Show child attributes
Was this page helpful?