Skip to main content

resources/qa/profile (get)

Get the best matching QA profile

URL

(GET) /resources/qa/profile

PARAMETERS

The parameters should be passed as GET parameters

source

The source locale

string
targetThe target localestring
profileId(optional) the profile's id

int

nameThe profile's namestring

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

RESULTS

An object containing the best matching profile and a list of all of the profiles matching the source/target criteria

JS
{
    "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
}

 

 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.