Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
srcThe connector profile source locale that will be used (either identical or having regional variant). Most connectors allow differences in locales.string
srctThe source locale name.string
trgThe connector profile target locale that will be used.string
trgtThe target locale name.


EXAMPLES

Get enabled systems:

Code Block
(GETPOST) /api/settings/mt/names?enabledOnly=truefindmatches
BODY
{ "src": "en-US", "trg": "fr-BE" }

Sample result:

Code Block
[
    {
        "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.

...