/
settings/mt/findmatches

settings/mt/findmatches

Given a language pair, this method returns all MT systems that are able to translate these languages.

URL

(POST) /api/settings/mt/findmatches

PARAMETERS

The BODY is a JSON object with these properties:

src

The source locale such as "en" or "fr-FR".

string, Mandatory

trgThe target locale.string, Mandatory

RESULTS

The result is a JSON object with all active machine translation systems in the order they are configured. Each element has these properties:

idThe unique ID of the MT profile.int
nameThe name of the profile.string
systemThe underlying system such as "Microsoft" or "Intento"string
enabledTrue: The connector is enabled. Note that this API only returns enabled connectors and so this property is always true.bool
providerAn internal numeric code for the system.int
src

The connector profile source locale that will be used (either identical or having regional variant). Most connectors allow differences in locales.

The Meta Connector system is an example of a connector only accepting exactly matching language codes.

string
srctThe source locale name.string
trgThe connector profile target locale that will be used.string
trgtThe target locale name.


EXAMPLES

Get enabled systems:

(POST) /api/settings/mt/findmatches
BODY
{ "src": "bg-BG", "trg": "zh" }

Sample result. Note how both connectors accept regional variations in the language codes.

[
    {
        "id": 600,
        "system": "Pseudo Translation",
        "name": "Pseudo Translation",
        "enabled": true,
        "provider": 100,
        "src": "bg",
        "srct": "Bulgarian (bg)",
        "trg": "zh",
        "trgt": "Chinese (zh)"
    },
    {
        "id": 831,
        "system": "Microsoft (v2)",
        "name": "My Microsoft",
        "enabled": true,
        "provider": 17,
        "src": "bg",
        "srct": "Bulgarian (bg)",
        "trg": "zh-CHS",
        "trgt": "Chinese (Simplified) Legacy (zh-CHS)"
    }
]



ACCESS RIGHTS

For users that can access the Wordbee Translator "Settings" pages.




Related content

MT Meta Connectors
MT Meta Connectors
More like this
settings/mt/names
settings/mt/names
More like this
settings/mt/finderrors
settings/mt/finderrors
More like this
What is a Meta Connector?
What is a Meta Connector?
More like this
apps/mthive/translate/sync (post)
apps/mthive/translate/sync (post)
More like this
apps/mthive/configuration
apps/mthive/configuration
More like this

Copyright Wordbee - Buzzin' Outside the Box since 2008