Versions Compared

Key

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

...

 Request example: http://wordbee-translator.com/api/resources/qa/profile?source=en&target=fr&name=QAProfile

RESULTS

A Aysnchrone (Object) with successful resP.e :An object containing the best matching profile and a list of all of the profiles matching the source/target criteria

Code Block
languagejs
{
    "profile": {
        "id": 53,
        "name": "French",
        "description": "",
        "updateStatus": false,
        "updateBookmark": false,
        "src": null,
        "trg": "fr-FR",
        "rules": [ /* Array of rule definitions. See the QARule object for more information */ ],
        "srct": "Any language",
        "trgt": "French (France)"
    },
    "allprofiles": [
        {
            "id": 1,
            "name": "Default"
        },
        {
            "id": 53,
            "name": "French"
        },
        {
            "id": 70,
            "name": "Terminology check"
        }
    ],
    "options": null,
    "canEdit": true
}

...