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 |
target | The target locale | string |
profileId | (optional) the profile's id | int |
name | The profile's name | string |
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
}