List custom language model
Lists the custom language models registered in the system
URL: GET https://api.scriptix.io/api/v3/custom_models/
Request headers
The following headers need to be present
| Parameter | Value | Description |
|---|---|---|
| x-zoom-s2t-key | Scriptix Reseller API Token | API key of type Reseller needed for authorization |
Responses
| Status code | Description |
|---|---|
| 200 | List of custom models |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 500 | Server Error |
HTTP 200 OK
Content-type: application/json
Response: APIResultResponse<CustomModel[]>
JSON Response
{
"result": [
{
"id": 2,
"name": "Model with acoustic and language datasets",
"last_modified": "2021-01-25T10:31:46.960411+00:00",
"organization_id": 20123,
"language_data": null,
"is_trainable": false,
"type": 1,
"base_language_id": 1,
"base_language_key": nl-nl,
"training_log": null
}
],
"count": 1,
"total_results": 1
}