Model - List Custom Prebuilt Models
Gets all prebuilt intent and entity model information used in a version of this application.
GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/customprebuiltmodels
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
app
|
path | True |
string uuid |
The application ID. |
Endpoint
|
path | True |
string |
Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com). |
version
|
path | True |
string |
The version ID. |
Request Header
Name | Required | Type | Description |
---|---|---|---|
Ocp-Apim-Subscription-Key | True |
string |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Returns a list of all prebuilt models and their representations. |
|
Other Status Codes |
Error Response. |
Security
Ocp-Apim-Subscription-Key
Type:
apiKey
In:
header
Examples
Successful Get Custom Prebuilt Domain Models request
Sample request
GET {Endpoint}/luis/api/v2.0/apps/363187f1-c573-46b3-bc4c-ae01d686e68e/versions/1.0/customprebuiltmodels
Sample response
[
{
"id": "1aa813da-8d36-4d16-bb13-d6f193290fea",
"name": "Calendar.Find",
"typeId": 0,
"readableType": "Intent Classifier",
"customPrebuiltDomainName": "Calendar",
"customPrebuiltModelName": "Find"
},
{
"id": "d02b2e38-6b3c-412e-bf9e-f6770a40c9a0",
"name": "Calendar.Location",
"typeId": 1,
"readableType": "Entity Extractor",
"customPrebuiltDomainName": "Calendar",
"customPrebuiltModelName": "Location",
"roles": [
{
"id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
"name": "role 1"
},
{
"id": "3d73462d-98f0-4dcd-8d30-fab9e65f2e73",
"name": "role 2"
}
]
}
]
Definitions
Name | Description |
---|---|
Custom |
A Custom Prebuilt model. |
Entity |
Entity extractor role |
Error |
Error response when invoking an operation on the API. |
Readable |
Full name of the entity type. |
CustomPrebuiltModel
A Custom Prebuilt model.
Name | Type | Description |
---|---|---|
customPrebuiltDomainName |
string |
The domain name. |
customPrebuiltModelName |
string |
The intent name or entity name. |
id |
string |
The ID of the Entity Model. |
name |
string |
Name of the Entity Model. |
readableType |
Full name of the entity type. |
|
roles |
List of Pattern.Any Entity Extractors. |
|
typeId |
integer |
The type ID of the Entity Model. |
EntityRole
Entity extractor role
Name | Type | Description |
---|---|---|
id |
string |
The entity role ID. |
name |
string |
The entity role name. |
ErrorResponse
Error response when invoking an operation on the API.
Name | Type | Description |
---|---|---|
errorType |
string |
ReadableType
Full name of the entity type.
Name | Type | Description |
---|---|---|
Closed List Entity Extractor |
string |
|
Composite Entity Extractor |
string |
|
Entity Extractor |
string |
|
Hierarchical Child Entity Extractor |
string |
|
Hierarchical Entity Extractor |
string |
|
Intent Classifier |
string |
|
List Entity Extractor |
string |
|
Pattern.Any Entity Extractor |
string |
|
Prebuilt Entity Extractor |
string |
|
Regex Entity Extractor |
string |