Model - List Intents
Gets information about the intent models in a version of the application.
GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/intents
GET {Endpoint}/luis/api/v2.0/apps/{appId}/versions/{versionId}/intents?skip={skip}&take={take}
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. |
|
skip
|
query |
integer minimum: 0 |
The number of entries to skip. Default value is 0. |
|
|
take
|
query |
integer minimum: 0maximum: 500 |
The number of entries to return. Maximum page size is 500. Default is 100. |
Request Header
| Name | Required | Type | Description |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | True |
string |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
A list of intent model infos. |
|
| Other Status Codes |
Error Response. |
Security
Ocp-Apim-Subscription-Key
Type:
apiKey
In:
header
Examples
Successful Get Application Version Intent Infos request
Sample request
GET {Endpoint}/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07b/versions/0.1/intents?skip=0&take=100
Sample response
[
{
"id": "227a71ed-7d4b-4dce-8f3a-16c4e5cc06e8",
"name": "BookFlight",
"typeId": 0,
"readableType": "Intent Classifier"
},
{
"id": "8285a9ee-6bc0-4409-87f4-82d539f70529",
"name": "None",
"typeId": 0,
"readableType": "Intent Classifier"
},
{
"id": "9500536f-ffec-4fab-93ad-6268abb0f73c",
"name": "$Camera.CapturePhoto",
"typeId": 0,
"readableType": "Intent Classifier",
"customPrebuiltDomainName": "Camera",
"customPrebuiltModelName": "CapturePhoto"
}
]
Definitions
| Name | Description |
|---|---|
|
Error |
Error response when invoking an operation on the API. |
|
Intent |
Intent Classifier. |
|
Readable |
Full name of the entity type. |
ErrorResponse
Error response when invoking an operation on the API.
| Name | Type | Description |
|---|---|---|
| errorType |
string |
IntentClassifier
Intent Classifier.
| Name | Type | Description |
|---|---|---|
| customPrebuiltDomainName |
string |
The domain name. |
| customPrebuiltModelName |
string |
The intent name or entity name. |
| id |
string (uuid) |
The ID of the Entity Model. |
| name |
string |
Name of the Entity Model. |
| readableType |
Full name of the entity type. |
|
| typeId |
integer |
The type ID of the Entity Model. |
ReadableType
Full name of the entity type.
| Value | Description |
|---|---|
| Entity Extractor | |
| Hierarchical Entity Extractor | |
| Hierarchical Child Entity Extractor | |
| Composite Entity Extractor | |
| List Entity Extractor | |
| Prebuilt Entity Extractor | |
| Intent Classifier | |
| Pattern.Any Entity Extractor | |
| Closed List Entity Extractor | |
| Regex Entity Extractor |